Skip to content

Commit

Permalink
ci: add tag message
Browse files Browse the repository at this point in the history
  • Loading branch information
aeharding committed Nov 13, 2024
1 parent c3b8dee commit 61dfae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,6 @@ jobs:
git commit -S -m "release: ${{ needs.app_version.outputs.app_version }} (${{ needs.app_build.outputs.app_build }})"
TAG_NAME="${{ needs.app_version.outputs.app_version }}"
echo "Creating tag: $TAG_NAME"
git tag "$TAG_NAME"
git tag -s "$TAG_NAME" -m "release: ${{ needs.app_version.outputs.app_version }} (${{ needs.app_build.outputs.app_build }})"
git push origin "release/${{ needs.app_version.outputs.app_version }}"
git push origin "$TAG_NAME"

0 comments on commit 61dfae1

Please sign in to comment.