Skip to content

Commit

Permalink
[ci] Add missing -m option to git tag #600 (#601)
Browse files Browse the repository at this point in the history
add message
  • Loading branch information
michaelvlach authored Jun 18, 2023
1 parent 5d0b43e commit c1262ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git tag -a "v${{ needs.new_version.outputs.new_version }}"
git tag -a "v${{ needs.new_version.outputs.new_version }}" -m "Release version ${{ needs.new_version.outputs.new_version }}"
git push origin "v${{ needs.new_version.outputs.new_version }}"
- uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit c1262ad

Please sign in to comment.