Skip to content

Commit 6c6f357

Browse files
authored
ci: fix release commit message (#144)
Signed-off-by: Salim Afiune Maya <[email protected]>
1 parent 646faac commit 6c6f357

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/release.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,9 @@ generate_release_notes() {
200200

201201
push_release() {
202202
log "commiting and pushing the release to github"
203+
_version_no_tag=$(echo $VERSION | awk -F. '{printf("%d.%d.%d", $1, $2, $3)}')
203204
git checkout -B release
204-
git commit -am "Release v$VERSION"
205+
git commit -am "Release v$_version_no_tag"
205206
git push origin release
206207
log ""
207208
log "Follow the above url and open a pull request"

0 commit comments

Comments
 (0)