Commit 620f8db
committed
fix(root): unblock express jobs in npmjs-release
#8650 introduced an `always()` chain on `release-bitgojs` so it can
run when one of its two context jobs is skipped (get-release-context
in recovery mode, get-recovery-context in normal mode). The Express
jobs (get-express-release-context, publish-express-to-docker-hub)
relied on GHA's implicit `success()` against `release-bitgojs`, which
propagates the skipped context-job status as not-success along the
chain. Express therefore skips on both modes even though release-
bitgojs itself succeeded.
Override with explicit `always() && needs.<>.result == 'success'` on
both Express jobs so the docker publish runs whenever release-bitgojs
actually succeeded, regardless of which context job ran.
Ticket: WCN-3571 parent b57c529 commit 620f8db
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
318 | 318 | | |
319 | 319 | | |
320 | 320 | | |
321 | | - | |
| 321 | + | |
322 | 322 | | |
323 | 323 | | |
324 | 324 | | |
| |||
411 | 411 | | |
412 | 412 | | |
413 | 413 | | |
414 | | - | |
| 414 | + | |
415 | 415 | | |
416 | 416 | | |
417 | 417 | | |
| |||
0 commit comments