Skip to content

Commit c0ddb3f

Browse files
committed
fix(ci): add skip-override to package and release jobs too
The skipped validate job propagates through the entire needs chain. Every downstream job needs its own `!failure() && !cancelled()` condition to override the inherited skip.
1 parent 249fd36 commit c0ddb3f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272

7373
package:
7474
needs: build
75+
if: ${{ !failure() && !cancelled() }}
7576
runs-on: ubuntu-latest
7677
strategy:
7778
matrix:
@@ -131,6 +132,7 @@ jobs:
131132
132133
release:
133134
needs: [build, package]
135+
if: ${{ !failure() && !cancelled() }}
134136
runs-on: ubuntu-latest
135137
steps:
136138
- uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)