File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 31
31
version-file : ${{ env.VERSION_FILE }}
32
32
version-file-extraction-pattern : ${{ env.VERSION_PATTERN }}
33
33
build-and-test :
34
- if : github.event.inputs.skip-publication != 'true' || !cancelled()
34
+ if : github.event.inputs.skip-publication != 'true' && !cancelled()
35
35
uses : ./.github/workflows/build-and-test.yml
36
36
publish_artifacts :
37
37
# permissions required for sigstore signature
41
41
needs :
42
42
- version
43
43
- build-and-test
44
- if : github.event.inputs.skip-publication != 'true' || !cancelled()
44
+ if : github.event.inputs.skip-publication != 'true' && !cancelled()
45
45
runs-on : macos-latest
46
46
steps :
47
47
- name : ' Checkout Repository'
87
87
needs :
88
88
- publish_artifacts
89
89
- version
90
- if : github.event.inputs.skip-publication == 'true' || !cancelled()
90
+ if : ${{ !cancelled() }}
91
91
steps :
92
92
- name : ' Checkout Repository'
93
93
uses : actions/checkout@v4
@@ -127,6 +127,7 @@ jobs:
127
127
makeLatest : ${{ github.ref == 'refs/heads/main' }}
128
128
update-version :
129
129
runs-on : ubuntu-latest
130
+ if : ${{ !cancelled() }}
130
131
needs :
131
132
- create_release
132
133
- version
You can’t perform that action at this time.
0 commit comments