From 89231b9a1663234fd0a735d3cb55b3b6a08a6971 Mon Sep 17 00:00:00 2001 From: Matthew Mellor Date: Mon, 9 Mar 2026 13:46:06 -0500 Subject: [PATCH] fix(ci): prevent version-manifest job from being skipped on tag push The version-manifest job was silently skipped on v1.6.0 due to GitHub Actions transitive needs-chain behavior: when auto-version is skipped (tag push), build-and-push uses always() to run anyway, but version-manifest inherited the skip from the ancestor chain. Adding always() with an explicit success check ensures the job runs whenever build-and-push succeeds on a tag push. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14a3f96..b4bf87f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -120,7 +120,7 @@ jobs: # Generate and attach tool version manifest to GitHub release version-manifest: needs: [build-and-push] - if: startsWith(github.ref, 'refs/tags/v') + if: always() && needs.build-and-push.result == 'success' && startsWith(github.ref, 'refs/tags/v') runs-on: ubuntu-latest permissions: contents: write