Skip to content

Commit b0376b7

Browse files
Merge pull request #3 from johnlindquist/claude/2025-07-03-1751581701314
Fix GitHub Actions push authentication
2 parents 1edd7fa + dc8bd60 commit b0376b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/onPushToMain.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
if [ -n "$(git status --porcelain)" ]; then
4444
git add .
4545
git commit -am "chore: update README.md"
46-
git push -u origin ${{ github.ref_name }}
46+
git push https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }}.git HEAD:${{ github.ref_name }}
4747
fi
4848
- name: Create Github Release
4949
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5

0 commit comments

Comments
 (0)