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 86ee1bb commit fe7a1f4Copy full SHA for fe7a1f4
.github/workflows/deploy_books.yml
@@ -36,6 +36,13 @@ jobs:
36
working-directory: book_template
37
run: mdbook build
38
39
+
40
+ - name: Setup Git for push
41
+ run: |
42
+ git config --global user.name "github-actions[bot]"
43
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
44
+ git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
45
46
- name: Deploy to GitHub Pages
47
uses: peaceiris/actions-gh-pages@v4
48
with:
0 commit comments