We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd7162f commit bc9cebdCopy full SHA for bc9cebd
.github/workflows/deploypages.yml
@@ -115,11 +115,13 @@ jobs:
115
env:
116
DOCS_BASEURL: ${{ secrets.DOCS_BASEURL }}
117
118
+ # --- Upload static site as artifact ---
119
+ - name: Upload Pages artifact
120
+ uses: actions/upload-pages-artifact@v3
121
+ with:
122
+ path: ./build # folder that holds index.html
123
- # ----- Publish to gh-pages -----
124
+ # --- Deploy to GitHub Pages (official) ---
125
- name: Deploy to GitHub Pages
- uses: peaceiris/actions-gh-pages@v3
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_branch: gh-pages
- publish_dir: ./build
126
+ id: deployment
127
+ uses: actions/deploy-pages@v4
0 commit comments