From 548130d673c6513ffd37d60696aa942cb84b334e Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Sat, 4 Oct 2025 02:45:07 +0800 Subject: [PATCH] chore(ci): incorrect build with args command --- .github/workflows/release-tamagotchi.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-tamagotchi.yml b/.github/workflows/release-tamagotchi.yml index b56e6324c..8c1c9e34e 100644 --- a/.github/workflows/release-tamagotchi.yml +++ b/.github/workflows/release-tamagotchi.yml @@ -95,15 +95,15 @@ jobs: - name: Build (Windows Only) # Windows if: matrix.os == 'windows-latest' - run: pnpm run -F @proj-airi/stage-tamagotchi build ${{ matrix.builder-args }} + run: pnpm run -F @proj-airi/stage-tamagotchi build && pnpm -F @proj-airi/stage-tamagotchi exec electron-builder build ${{ matrix.builder-args }} - name: Build (macOS Only) # macOS if: matrix.os == 'macos-13' || matrix.os == 'macos-latest' - run: pnpm run -F @proj-airi/stage-tamagotchi build ${{ matrix.builder-args }} + run: pnpm run -F @proj-airi/stage-tamagotchi build && pnpm -F @proj-airi/stage-tamagotchi exec electron-builder build ${{ matrix.builder-args }} - name: Build (Linux Only) # Linux if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm' - run: pnpm run -F @proj-airi/stage-tamagotchi build ${{ matrix.builder-args }} + run: pnpm run -F @proj-airi/stage-tamagotchi build && pnpm -F @proj-airi/stage-tamagotchi exec electron-builder build ${{ matrix.builder-args }} # --------- # Nightly (schedule) builds only