Skip to content

Commit e93a753

Browse files
committed
🐛 fixed github release command in github_actions plugin
1 parent e23b7ee commit e93a753

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

continuous_delivery_scripts/plugins/github_actions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ def _generate_github_cli_release_command_list(
2323
) -> List[str]:
2424
cmd = [
2525
"gh",
26+
"create",
2627
"release",
27-
"--latest",
28+
f"{tag}",
2829
"--notes-file",
2930
f"{str(changelog)}",
3031
]
@@ -36,7 +37,6 @@ def _generate_github_cli_release_command_list(
3637
title = f":news: Pre-release {version}"
3738
cmd.append("--title")
3839
cmd.append(title)
39-
cmd.append(tag)
4040
return cmd
4141

4242

news/20221222011846.bugfix

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
:bug: fixed github release command in `github_actions` plugin

0 commit comments

Comments
 (0)