Skip to content

Commit

Permalink
improve
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierZal committed Jul 31, 2024
1 parent 8ec8644 commit 94b8d9b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/update-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ jobs:
changelog: ${{ inputs.changelog }}
- name: Commit & push
run: |
npm version ${{ steps.update_app_version.outputs.version }} --no-git-tag-version
VERSION=${{ steps.update_app_version.outputs.version }}
npm version $VERSION --no-git-tag-version --allow-same-version
git config --local user.email "[email protected]"
git config --local user.name "Homey Github Actions Bot"
git add -A
git commit -m "Update app version to v${{ steps.update_app_version.outputs.version }}"
git tag "v${{ steps.update_app_version.outputs.version }}"
git commit -m "Update app version to v$VERSION"
git tag "v$VERSION"
git push origin HEAD --tags

0 comments on commit 94b8d9b

Please sign in to comment.