Skip to content

Commit

Permalink
Fix versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Ackuq committed May 4, 2022
1 parent be77747 commit 1dd9943
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ jobs:
- name: Create tag
run: |
tag=v${{ steps.bump-semver.outputs.new_version }}
tag=v${{ steps.version.outputs.jar_version }}
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git tag -a "${tag}" -m "Release version ${{ steps.bump-semver.outputs.new_version }}"
git tag -a "${tag}" -m "Release version ${{ steps.version.outputs.jar_version }}"
git push origin "${tag}"
- name: Release
Expand Down

0 comments on commit 1dd9943

Please sign in to comment.