Skip to content

Commit

Permalink
fix git push part of get-releases action
Browse files Browse the repository at this point in the history
IARI committed Mar 7, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 4bc854c commit 4b452a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/get-releases.yml
Original file line number Diff line number Diff line change
@@ -27,8 +27,10 @@ jobs:
run: echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")
- name: Commit latest release version
if: steps.git-check.outputs.modified == 'true'
#git config --global user.name 'Julian Jarecki'
#git config --global user.email '[email protected]'
run: |
git config --global user.name 'Julian Jarecki'
git config --global user.email 'julian.jarecki@gmail.com'
git config user.name github-actions
git config user.email github-actions@github.com
git commit -am "Release version ${{ env.version }}"
git push

0 comments on commit 4b452a9

Please sign in to comment.