Website: Deploy from actions instead of branch

This commit is contained in:
LagoLunatic
2024-07-18 12:13:28 -04:00
parent 01ca39590f
commit e18b447c35
+6 -6
View File
@@ -71,10 +71,10 @@ jobs:
- name: Build Website
run: |
python build.py
- name: Deploy Website
uses: JamesIves/github-pages-deploy-action@v4
- name: Upload website artifact
uses: actions/upload-pages-artifact@v3
with:
branch: gh-pages
folder: dist # The folder the action should deploy.
clean: true
single-commit: true
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4