We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e2e538 commit 94ba60dCopy full SHA for 94ba60d
.github/workflows/main.yml
@@ -22,11 +22,12 @@ jobs:
22
touch build/.nojekyll
23
- name: Upload to GitHub Pages
24
if: github.ref == 'refs/heads/master'
25
- uses: peaceiris/[email protected]
26
- env:
27
- GITHUB_TOKEN: ${{ secrets.GH_PAT }}
28
- PUBLISH_BRANCH: gh-pages
29
- PUBLISH_DIR: ./docs/build
+ uses: JamesIves/github-pages-deploy-action@releases/v3
30
with:
31
- emptyCommits: false
32
- keepFiles: false
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
+ BRANCH: gh-pages
+ FOLDER: docs/build
+ CLEAN: true
+ SINGLE_COMMIT: true
+ GIT_CONFIG_NAME: GitHub Actions
33
+ GIT_CONFIG_EMAIL: [email protected]
0 commit comments