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 ebe66e1 commit c2018f1Copy full SHA for c2018f1
.github/workflows/release.yml
@@ -102,8 +102,13 @@ jobs:
102
git config --global user.name "github-actions[bot]"
103
git config --global user.email "github-actions@users.noreply.github.com"
104
git remote set-url origin https://x-access-token:${{ secrets.GH_PAT }}@github.com/Dimos082/cli-monitor.git
105
+ echo "DEBUG: Remote URLs before push"
106
+ git remote -v
107
git add cli_monitor.py
108
git commit -m "chore: bump version to ${{ env.NEW_VERSION }}" || echo "No changes to commit"
109
+ echo "DEBUG: Checking authentication"
110
+ git fetch origin
111
+ echo "DEBUG: Pushing changes"
112
git push origin main
113
114
- name: Create GitHub Release
0 commit comments