From 9e9002e5a520de2613ff42aa66d30036f7cd9c6e Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Fri, 13 Jun 2025 15:21:34 -0400 Subject: [PATCH] [ci] Don't skip experimental prerelease incorrectly Previously the experimental workflow relied on the canary one running first to avoid race conditions. However, I didn't account for the fact that the canary one can now be skipped. --- .github/workflows/runtime_prereleases_manual.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/runtime_prereleases_manual.yml b/.github/workflows/runtime_prereleases_manual.yml index 552b3e43a17f7..407d931e90738 100644 --- a/.github/workflows/runtime_prereleases_manual.yml +++ b/.github/workflows/runtime_prereleases_manual.yml @@ -88,6 +88,8 @@ jobs: # different versions of the same package, even if they use different # dist tags. needs: publish_prerelease_canary + # Ensures the job runs even if canary is skipped + if: always() with: commit_sha: ${{ inputs.prerelease_commit_sha }} release_channel: experimental