Skip to content

Commit 72ff71f

Browse files
committed
Fix multi-stage condition
1 parent 1702aa6 commit 72ff71f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ jobs:
226226
- name: Build Stage 1 Clang
227227
shell: bash
228228
run: |
229-
if [ "${{ steps.needs.prepare.outputs.multi-stage}}" = "true" ]; then
229+
if [ "${{ steps.needs.prepare.outputs.multi-stage}}" = "false" ]; then
230230
ninja -v -C ${{ steps.setup-stage.outputs.build-prefix }}/build stage2-package
231231
mv ${{ steps.setup-stage.outputs.build-prefix }}/build/tools/clang/stage2-bins/${{ needs.prepare.outputs.release-binary-filename }} .
232232
else

0 commit comments

Comments
 (0)