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 40eceb3 commit e95dd6bCopy full SHA for e95dd6b
.github/workflows/deploypages.yml
@@ -57,10 +57,16 @@ jobs:
57
git config user.email "github-actions[bot]@users.noreply.github.com"
58
git add docs/
59
git commit -m "Update pulled docs" || echo "No changes"
60
- git push
+
61
+ # ---- Auth for push ----
62
+ git remote set-url origin \
63
+ https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
64
65
+ git push origin HEAD:main
66
env:
67
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
68
69
70
# --------------------------------------------------------- #
71
# 3. Build site + Tina, publish to gh-pages
72
0 commit comments