Skip to content

Commit

Permalink
🐛 fixed github release command in github_actions plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
acabarbaye committed Dec 22, 2022
1 parent e23b7ee commit e93a753
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions continuous_delivery_scripts/plugins/github_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ def _generate_github_cli_release_command_list(
) -> List[str]:
cmd = [
"gh",
"create",
"release",
"--latest",
f"{tag}",
"--notes-file",
f"{str(changelog)}",
]
Expand All @@ -36,7 +37,6 @@ def _generate_github_cli_release_command_list(
title = f":news: Pre-release {version}"
cmd.append("--title")
cmd.append(title)
cmd.append(tag)
return cmd


Expand Down
1 change: 1 addition & 0 deletions news/20221222011846.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:bug: fixed github release command in `github_actions` plugin

0 comments on commit e93a753

Please sign in to comment.