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:
129129 shell : bash
130130 run : |
131131 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
133133
134134 - name : Upload Stage 1 Source
135135 uses : actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
@@ -150,6 +150,7 @@ jobs:
150150 needs :
151151 - prepare
152152 - build-stage1
153+ if : always()
153154 runs-on : ${{ matrix.runs-on }}
154155 strategy :
155156 fail-fast : false
@@ -218,6 +219,7 @@ jobs:
218219 needs :
219220 - prepare
220221 - build-stage2
222+ if : always()
221223 outputs :
222224 filename : ${{ steps.package-info.outputs.release-filename }}
223225 runs-on : ${{ matrix.runs-on }}
@@ -320,7 +322,9 @@ jobs:
320322 needs :
321323 - prepare
322324 - build-stage3
323- if : ${{ needs.prepare.outputs.upload == 'true' }}
325+ if : >-
326+ always() &&
327+ ${{ needs.prepare.outputs.upload == 'true' }}
324328 runs-on : ubuntu-22.04
325329 permissions :
326330 contents : write # For release uploads
@@ -347,6 +351,7 @@ jobs:
347351 needs :
348352 - prepare
349353 - build-stage3
354+ if : always()
350355 runs-on : ubuntu-22.04
351356 strategy :
352357 fail-fast : false
You can’t perform that action at this time.
0 commit comments