Skip to content

Commit 7e19bd8

Browse files
committed
fix: ci [no_lint]
1 parent 338a314 commit 7e19bd8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
bundle:
7878
runs-on: ubuntu-latest
7979
needs: lint
80-
if: needs.lint.result != 'failure'
80+
if: ${{ !failure() && !cancelled() }}
8181
strategy:
8282
matrix:
8383
format: [yaml, json]
@@ -112,7 +112,7 @@ jobs:
112112
release:
113113
runs-on: ubuntu-latest
114114
needs: bundle
115-
if: github.ref == 'refs/heads/main' && needs.bundle.result != 'failure' && !contains(github.event.head_commit.message, 'no_release') && !github.event.inputs.no_release
115+
if: ${{ !failure() && !cancelled() && github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'no_release') && !github.event.inputs.no_release }}
116116
outputs:
117117
version: ${{ steps.metadata.outputs.version }}
118118

0 commit comments

Comments
 (0)