We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3afc2e3 commit 9b165e7Copy full SHA for 9b165e7
.github/workflows/build-docs.yml
@@ -27,10 +27,10 @@ jobs:
27
28
- name: Commit and push docs
29
env:
30
- GH_TOKEN: ${{ secrets.GH_PAT }}
+ GH_PAT: ${{ secrets.GH_PAT }}
31
run: |
32
git config --global user.name "github-actions[bot]"
33
git config --global user.email "github-actions[bot]@users.noreply.github.com"
34
git add docs/
35
git commit -m "Update exported docs [skip ci]" || echo "No changes to commit"
36
- git push https://x-access-token:${GH_TOKEN}@github.com/${{ github.repository }}.git HEAD:${{ github.ref_name }}
+ git push https://x-access-token:${GH_PAT}@github.com/${{ github.repository }}.git HEAD:${{ github.ref_name }}
0 commit comments