Skip to content

Commit

Permalink
Fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
Ackuq committed Apr 22, 2022
1 parent 4583f30 commit b34c22d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,12 @@ jobs:
git push
- name: Create tag
uses: actions-ecosystem/action-push-tag@v1
with:
tag: v${{ steps.version.outputs.jar_version }}
run: |
tag=v${{ steps.bump-semver.outputs.new_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 push origin "${tag}"
- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit b34c22d

Please sign in to comment.