diff --git a/.github/workflows/static.yaml b/.github/workflows/static.yaml index e8a34d1f..b9c9160f 100644 --- a/.github/workflows/static.yaml +++ b/.github/workflows/static.yaml @@ -31,8 +31,13 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 with: - folder: . - force: true + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4