Skip to content

Commit

Permalink
Merge pull request #5801 from jkonecny12/rhel-10-fix-tag-creation
Browse files Browse the repository at this point in the history
RHEL-10: Create annotated tag instead of lightweight
  • Loading branch information
jkonecny12 authored Aug 5, 2024
2 parents f79a297 + 7e8e32c commit bdcf6fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/makebumpver
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ class MakeBumpVer:
# make the release commit
run_program(['git', 'commit', '-m', commit_message])
# tag the release
run_program(['git', 'tag', release_tag])
run_program(['git', 'tag', '-a', '-m', commit_message, release_tag])
# log the commit message & tag
log.info("commit message: %s", commit_message)
log.info("tag: %s", release_tag)
Expand Down

0 comments on commit bdcf6fc

Please sign in to comment.