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 74c36a9 commit 3958ec5Copy full SHA for 3958ec5
.github/workflows/publish.yml
@@ -18,12 +18,9 @@ jobs:
18
run: |
19
sphinx-build source docs
20
- name: Publish to docs branch
21
- env:
22
- USER_NAME: ${{ process.env.GITHUB_ACTOR }}
23
- USER_EMAIL: ${{ process.env.GITHUB_ACTOR }}@users.noreply.github.com
24
25
- git config --global user.name "${USER_NAME}"
26
- git config --global user.email "${USER_EMAIL}"
+ git config --global user.name "GitHub Action"
+ git config --global user.email "[email protected]"
27
git add .
28
git commit -m "Upload docs"
29
git push origin docs
0 commit comments