Skip to content

Commit 5f5d596

Browse files
committed
fix(ci): incorrect condition
1 parent 01d8f8d commit 5f5d596

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/release-tamagotchi.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,11 @@ jobs:
9292
runs-on: ${{ matrix.os }}
9393
steps:
9494
- name: Skip the build (fail fast)
95-
if: matrix.skip
9695
run: |
9796
echo "Skipping build for ${{ matrix.os }}..."
9897
echo "This will fail the job, but don't panic—this is expected when not building for all."
9998
echo "This will be improved in the future."
100-
exit 1
99+
exit ${{ matrix.skip && '1' || '0' }}
101100
102101
# Why?
103102
#

0 commit comments

Comments
 (0)