File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ jobs:
129
129
shell : bash
130
130
run : |
131
131
tar -c . | zstd -T0 -c > llvm-project.tar.zst
132
- tar ${{ steps.build.outputs.build_prefix }} -c build/ | zstd -T0 -c > build.tar.zst
132
+ tar ${{ steps.build.outputs.build-prefix }} -c build/ | zstd -T0 -c > build.tar.zst
133
133
134
134
- name : Upload Stage 1 Source
135
135
uses : actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
@@ -150,6 +150,7 @@ jobs:
150
150
needs :
151
151
- prepare
152
152
- build-stage1
153
+ if : always()
153
154
runs-on : ${{ matrix.runs-on }}
154
155
strategy :
155
156
fail-fast : false
@@ -218,6 +219,7 @@ jobs:
218
219
needs :
219
220
- prepare
220
221
- build-stage2
222
+ if : always()
221
223
outputs :
222
224
filename : ${{ steps.package-info.outputs.release-filename }}
223
225
runs-on : ${{ matrix.runs-on }}
@@ -320,7 +322,9 @@ jobs:
320
322
needs :
321
323
- prepare
322
324
- build-stage3
323
- if : ${{ needs.prepare.outputs.upload == 'true' }}
325
+ if : >-
326
+ always() &&
327
+ ${{ needs.prepare.outputs.upload == 'true' }}
324
328
runs-on : ubuntu-22.04
325
329
permissions :
326
330
contents : write # For release uploads
@@ -347,6 +351,7 @@ jobs:
347
351
needs :
348
352
- prepare
349
353
- build-stage3
354
+ if : always()
350
355
runs-on : ubuntu-22.04
351
356
strategy :
352
357
fail-fast : false
You can’t perform that action at this time.
0 commit comments