We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdc970e commit 98a66b6Copy full SHA for 98a66b6
.github/workflows/pages.yml
@@ -80,8 +80,10 @@ jobs:
80
- name: Deploy to GitHub Pages
81
id: deployment
82
uses: actions/deploy-pages@v2
83
- - name: Deploy
84
- uses: peaceiris/actions-gh-pages@v4
85
- with:
86
- github_token: ${{ secrets.GITHUB_TOKEN }}
87
- publish_branch: gh-pages # default: gh-pages
+ - name: Push to gh_pages branch
+ run: |
+ git config --global user.name 'github-actions[bot]'
+ git config --global user.email 'github-actions[bot]@users.noreply.github.com'
+ git add public/*
88
+ git commit -m 'Deploy to gh_pages branch'
89
+ git push origin HEAD:gh_pages
0 commit comments