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 bb281b2 commit ebe66e1Copy full SHA for ebe66e1
.github/workflows/release.yml
@@ -91,6 +91,10 @@ jobs:
91
- name: Update Version in `cli_monitor.py`
92
run: sed -i "s/^__version__ = .*/__version__ = \"${{ env.NEW_VERSION }}\"/" cli_monitor.py
93
94
+ - name: Debug GitHub Authentication
95
+ run: |
96
+ git remote -v
97
+
98
- name: Commit & Push Version Update
99
env:
100
GH_PAT: ${{ secrets.GH_PAT }}
@@ -102,10 +106,6 @@ jobs:
102
106
git commit -m "chore: bump version to ${{ env.NEW_VERSION }}" || echo "No changes to commit"
103
107
git push origin main
104
108
105
- - name: Debug GitHub Authentication
- run: |
- git remote -v
-
109
- name: Create GitHub Release
110
uses: softprops/action-gh-release@v2
111
with:
0 commit comments