We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42ebed6 commit 630c16bCopy full SHA for 630c16b
1 file changed
.github/workflows/promote-nsc-channel.yml
@@ -167,13 +167,14 @@ jobs:
167
gh release upload "${RELEASE_TAG}" "${payload_assets[@]}" --repo "${ASSET_REPO}"
168
else
169
echo "Release ${RELEASE_TAG} already exists in ${ASSET_REPO}. Reusing immutable release."
170
+ if ! gh release edit "${RELEASE_TAG}" \
171
+ --repo "${ASSET_REPO}" \
172
+ --title "${RELEASE_TAG}" \
173
+ --notes-file "${notes_file}"; then
174
+ echo "Skipping release note refresh for existing ${RELEASE_TAG}." >&2
175
+ fi
176
fi
177
- gh release edit "${RELEASE_TAG}" \
- --repo "${ASSET_REPO}" \
- --title "${RELEASE_TAG}" \
- --notes-file "${notes_file}"
-
178
- name: Update manifests and tag pin
179
id: manifest-diff
180
env:
0 commit comments