We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 074c049 commit 30d47efCopy full SHA for 30d47ef
.github/workflows/pages.yml
@@ -73,6 +73,17 @@ jobs:
73
runs-on: ubuntu-latest
74
needs: build
75
steps:
76
+ - name: Checkout
77
+ uses: actions/checkout@v3
78
+ with:
79
+ fetch-depth: 0
80
- name: Deploy to GitHub Pages
81
id: deployment
82
uses: actions/deploy-pages@v2
83
+ - name: Push to gh_pages branch
84
+ run: |
85
+ git config --global user.name 'github-actions[bot]'
86
+ git config --global user.email 'github-actions[bot]@users.noreply.github.com'
87
+ git add .
88
+ git commit -m 'Deploy to gh_pages branch'
89
+ git push origin HEAD:gh_pages
0 commit comments