Skip to content

Commit

Permalink
fix: Create annotated tags
Browse files Browse the repository at this point in the history
  • Loading branch information
bennetrr committed Apr 19, 2024
1 parent 66bf113 commit 9be631a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/get_release_version_action/utils/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def create_git_tag(version: str) -> None:
logger.info('Creating tag %s', version)

# Create the tag
run_command('git', 'tag', version)
run_command('git', 'tag', '--annotate', '--message', f'Release {version}', version)

git_remote = run_command('git', 'remote', 'show')

Expand Down

0 comments on commit 9be631a

Please sign in to comment.