We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de34961 commit 3a73100Copy full SHA for 3a73100
1 file changed
.github/workflows/ci.yml
@@ -126,11 +126,12 @@ jobs:
126
sed -i "s/Version:.*[0-9]\+\.[0-9]\+\.[0-9]\+/Version: $NEW_VERSION/" Logger.hpp
127
echo "✅ Version updated to $NEW_VERSION"
128
129
- # Commit and push
+ # Commit and push with PAT token
130
git config --local user.email "action@github.com"
131
git config --local user.name "GitHub Action"
132
git add Logger.hpp
133
git commit -m "chore: auto-bump version to $NEW_VERSION [skip ci]"
134
+ git remote set-url origin https://x-access-token:${{ secrets.PAT_TOKEN }}@github.com/omerrbbulut/FreshLogger.git
135
git push origin main
136
137
echo "🚀 Version $NEW_VERSION pushed to main"
0 commit comments