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