We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d8f8d commit 5f5d596Copy full SHA for 5f5d596
.github/workflows/release-tamagotchi.yml
@@ -92,12 +92,11 @@ jobs:
92
runs-on: ${{ matrix.os }}
93
steps:
94
- name: Skip the build (fail fast)
95
- if: matrix.skip
96
run: |
97
echo "Skipping build for ${{ matrix.os }}..."
98
echo "This will fail the job, but don't panic—this is expected when not building for all."
99
echo "This will be improved in the future."
100
- exit 1
+ exit ${{ matrix.skip && '1' || '0' }}
101
102
# Why?
103
#
0 commit comments