From b428baecdcef41a11baa9fbe9eedef1112ed089a Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Fri, 9 Jan 2026 15:34:40 +0800 Subject: [PATCH] chore(ci): xcode required to be 26 for using icon composer --- .github/workflows/release-tamagotchi.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release-tamagotchi.yml b/.github/workflows/release-tamagotchi.yml index ee814fd42..7540a088f 100644 --- a/.github/workflows/release-tamagotchi.yml +++ b/.github/workflows/release-tamagotchi.yml @@ -108,6 +108,18 @@ jobs: # security set-key-partition-list -S apple-tool:,apple: -k "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH # security list-keychain -d user -s $KEYCHAIN_PATH + - name: macOS Show Xcode 26.1 + if: matrix.os == 'macos-15-intel' || matrix.os == 'macos-latest' + run: | + sudo xcode-select -s /Applications/Xcode_26.1.app + xcodebuild -version + + - name: macOS Show Toolchain + if: matrix.os == 'macos-15-intel' || matrix.os == 'macos-latest' + run: | + xcodebuild -version + actool --version + - uses: pnpm/action-setup@v4 with: run_install: false