From 5f5d5966939fa1c4af16df815568b8edfe668206 Mon Sep 17 00:00:00 2001 From: Makito Date: Fri, 16 Jan 2026 03:11:14 +0900 Subject: [PATCH] fix(ci): incorrect condition --- .github/workflows/release-tamagotchi.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release-tamagotchi.yml b/.github/workflows/release-tamagotchi.yml index 93437ebd6..bc50c52a8 100644 --- a/.github/workflows/release-tamagotchi.yml +++ b/.github/workflows/release-tamagotchi.yml @@ -92,12 +92,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Skip the build (fail fast) - if: matrix.skip run: | echo "Skipping build for ${{ matrix.os }}..." echo "This will fail the job, but don't panic—this is expected when not building for all." echo "This will be improved in the future." - exit 1 + exit ${{ matrix.skip && '1' || '0' }} # Why? #