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 956abde commit b0cb1ceCopy full SHA for b0cb1ce
.github/workflows/docs.yml
@@ -33,12 +33,16 @@ jobs:
33
- name: Move .git to build
34
run: mv './gh-pages/.git' './build'
35
36
+ - name: Set git config
37
+ run: |
38
+ git config user.name github-actions
39
+ git config user.email [email protected]
40
+ git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
41
+
42
- name: Push to pages
43
continue-on-error: true
44
run: |
45
cd './build'
- git config user.name github-actions
- git config user.email [email protected]
46
git add .
47
git commit -m "Update pages"
48
git push
0 commit comments