Skip to content

Commit 1921257

Browse files
authored
fix: Don't update website in releases before pushing helm charts (#14157)
This fixes a race condition in the release CI workflow. The helm chart publish checks the website for the current edge version, and if the website updates before this check then the job will fail. See https://github.com/linkerd/linkerd2/actions/runs/15734152324/job/44346112290 for an example Signed-off-by: Scott Fleener <[email protected]>
1 parent f9150a8 commit 1921257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
216216
website_publish:
217217
name: Linkerd website publish
218-
needs: [gh_release]
218+
needs: [chart_deploy]
219219
if: startsWith(github.ref, 'refs/tags/stable') || startsWith(github.ref, 'refs/tags/edge')
220220
timeout-minutes: 30
221221
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)