Skip to content

fix: handle race condition in release promote job#72

Merged
AaronFeledy merged 1 commit into
mainfrom
fix/release-promote-race
Mar 2, 2026
Merged

fix: handle race condition in release promote job#72
AaronFeledy merged 1 commit into
mainfrom
fix/release-promote-race

Conversation

@AaronFeledy
Copy link
Copy Markdown
Member

@AaronFeledy AaronFeledy commented Feb 22, 2026

Problem

When a fresh (non-prerelease) release is created, GitHub fires both published and released events simultaneously. The promote job (triggered by released) races the deploy job (triggered by published) and tries to npm dist-tag add before the package is published to npm.

Fix

Add a retry loop that waits up to 5 minutes for the package version to appear on npm before promoting. If the version never appears, the job fails with a clear error instead of silently succeeding.

This is better than simply skipping when the version doesn't exist (as in lando/phpmyadmin#72), because it still catches genuine failures — e.g., if a prerelease promotion runs and the version is truly missing.

Affected repos

This same fix is being rolled out to all Lando repos with this release workflow pattern.

Closes any race condition failures on the promote job.


Note

Low Risk
Small CI/workflow-only change that adds bounded waiting and clearer failure behavior; no product code or runtime logic is affected.

Overview
Prevents release promotion failures caused by a race between the deploy (publish) and promote (dist-tag) jobs.

The promote step now polls npm for up to 5 minutes for the target $PACKAGE@$VERSION to exist before running npm dist-tag add ... latest, and fails with a clear error if the version never appears.

Written by Cursor Bugbot for commit 6c70316. This will update automatically on new commits. Configure here.

When a fresh non-prerelease is published, GitHub fires both 'published'
and 'released' events simultaneously. The promote job races the deploy
job and fails because the package isn't on npm yet.

Add a retry loop (up to 5 min) so promote waits for the package to
appear, while still failing loudly if it never does.
@netlify
Copy link
Copy Markdown

netlify Bot commented Feb 22, 2026

Deploy Preview for lando-joomla ready!

Name Link
🔨 Latest commit 6c70316
🔍 Latest deploy log https://app.netlify.com/projects/lando-joomla/deploys/699b6d314f423800089fde5a
😎 Deploy Preview https://deploy-preview-72--lando-joomla.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 91 (no change from production)
Accessibility: 96 (no change from production)
Best Practices: 100 (no change from production)
SEO: 100 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

@AaronFeledy AaronFeledy merged commit 38acc23 into main Mar 2, 2026
30 of 32 checks passed
@AaronFeledy AaronFeledy deleted the fix/release-promote-race branch March 2, 2026 04:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant