Skip to content

Commit 8161bc2

Browse files
Fix release workflow: ensure helm chart is uploaded before release-drafter (#14364)
Add release-helm-chart as a dependency for release-drafter so the Helm chart is always uploaded to the release first. This prevents race conditions where release-drafter could create the release before the helm chart job, causing softprops/action-gh-release to fail with 'already_exists' and the helm chart to be missing from the release. Fixes #14337
1 parent 49a15e2 commit 8161bc2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release-2-tag-docker-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
secrets: inherit
7272

7373
release-drafter:
74-
needs: publish-container-digests
74+
needs: [publish-container-digests, release-helm-chart]
7575
uses: ./.github/workflows/release-drafter.yml
7676
with:
7777
version: ${{ inputs.release_number }}

0 commit comments

Comments
 (0)