You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--title "v${{steps.next_semantic_version.outputs.major}}.${{steps.next_semantic_version.outputs.minor}} MINOR release (auto-updated)" \
108
113
--generate-notes \
109
-
--target $GITHUB_SHA
114
+
--target "${{github.sha}}"
110
115
env:
111
116
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
112
117
113
118
# See https://cli.github.com/manual/gh_release_edit
114
-
- name: Updating existing release for the minor "v${{steps.next_semantic_version.outputs.major}}.${{steps.next_semantic_version.outputs.minor}}" version
119
+
- name: Recreating existing release for the minor "v${{steps.next_semantic_version.outputs.major}}.${{steps.next_semantic_version.outputs.minor}}" version
--title "v${{steps.next_semantic_version.outputs.major}}-rc MAJOR release (auto-updated)" \
84
+
--generate-notes \
78
85
--prerelease \
79
-
--target $GITHUB_SHA
86
+
--target "${{github.sha}}"
80
87
env:
81
88
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
82
89
@@ -97,17 +104,21 @@ jobs:
97
104
--title "v${{steps.next_semantic_version.outputs.major}}.${{steps.next_semantic_version.outputs.minor}}-rc MINOR release (auto-updated)" \
98
105
--generate-notes \
99
106
--prerelease \
100
-
--target $GITHUB_SHA
107
+
--target "${{github.sha}}"
101
108
env:
102
109
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
103
110
104
111
# See https://cli.github.com/manual/gh_release_edit
105
-
- name: Updating existing release for the minor "v${{steps.next_semantic_version.outputs.major}}.${{steps.next_semantic_version.outputs.minor}}-rc" version
112
+
- name: Recreating existing release for the minor "v${{steps.next_semantic_version.outputs.major}}.${{steps.next_semantic_version.outputs.minor}}-rc" version
0 commit comments