summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2024-07-18 12:13:28 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2024-07-18 12:13:28 -0400
commite18b447c35d57f029109ef2e493a11a0ea1ff4c8 (patch)
treeb316f66f3fae6fbeb175c1ce0a308f9268999234 /.github
parent01ca39590ff50650c3cf58430a07fa672c29b893 (diff)
Website: Deploy from actions instead of branch
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 97dded68..3bc91f27 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -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