From e18b447c35d57f029109ef2e493a11a0ea1ff4c8 Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Thu, 18 Jul 2024 12:13:28 -0400 Subject: [PATCH] Website: Deploy from actions instead of branch --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 97dded68d..3bc91f270 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