Skip to content

Commit 1cf91b7

Browse files
authored
create-gh-release.sh: include version string in the release title
1 parent f347fa6 commit 1cf91b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

create-gh-release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ export NOTES=$(git log | grep 'Updating rules/prefixes.json' | head -n 1 | sed "
77
echo "::notice::Creating a GitHub release for tag ${VERSION} (with notes '${NOTES}') ..."
88

99
set -x
10-
gh release create $VERSION --title 'Updating prefixes data' --notes "${NOTES}" && echo "::notice::Done" || echo "::error::Failed"
10+
gh release create $VERSION --title "${VERSION}: updating prefixes data" --notes "${NOTES}" && echo "::notice::Done" || echo "::error::Failed"

0 commit comments

Comments
 (0)