From b0aaf0080b25be18cc4100f0b8a2a44a5716813b Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sun, 9 Nov 2025 18:36:48 +0100 Subject: [PATCH] Fix Xcode version to 26.0.1 in release workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use Xcode 26.0.1 (the default stable version on macOS 26 runners) instead of latest-stable to avoid selecting Xcode 26.1 RC which has missing SDK components. This fixes the "iOS 26.1 is not installed" error during builds. Reference: https://github.com/actions/runner-images/blob/main/images/macos/macos-26-arm64-Readme.md 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5536daf..6899917b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,7 +41,7 @@ jobs: sed -i '' 's/iPhone Developer/iPhone Distribution/' Yattee.xcodeproj/project.pbxproj - uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: latest-stable + xcode-version: '26.0.1' - uses: maierj/fastlane-action@v3.0.0 with: lane: ${{ matrix.lane }} @@ -66,7 +66,7 @@ jobs: sed -i '' 's/3rd Party Mac Developer Application/Developer ID Application/' Yattee.xcodeproj/project.pbxproj - uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: latest-stable + xcode-version: '26.0.1' - uses: maierj/fastlane-action@v3.0.0 with: lane: mac build_and_notarize