We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
github_actions
1 parent e23b7ee commit e93a753Copy full SHA for e93a753
continuous_delivery_scripts/plugins/github_actions.py
@@ -23,8 +23,9 @@ def _generate_github_cli_release_command_list(
23
) -> List[str]:
24
cmd = [
25
"gh",
26
+ "create",
27
"release",
- "--latest",
28
+ f"{tag}",
29
"--notes-file",
30
f"{str(changelog)}",
31
]
@@ -36,7 +37,6 @@ def _generate_github_cli_release_command_list(
36
37
title = f":news: Pre-release {version}"
38
cmd.append("--title")
39
cmd.append(title)
- cmd.append(tag)
40
return cmd
41
42
news/20221222011846.bugfix
@@ -0,0 +1 @@
1
+:bug: fixed github release command in `github_actions` plugin
0 commit comments