From 42849c1aaebde6ac4e3ef35292b5bbca330ef79c Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sat, 18 Apr 2026 19:25:31 +0200 Subject: [PATCH] Drop explicit Xcode 26.0.1 selection on release workflow setup-xcode was switching to /Applications/Xcode_26.0.1.app, which on the macos-26 runner lacks the iOS 26.0 platform SDK. The runner's default Xcode has it bundled. Matches rewrite/v2. --- .github/workflows/release.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a4cde09..9ada6288 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,9 +39,6 @@ jobs: run: | sed -i '' 's/match Development/match AppStore/' Yattee.xcodeproj/project.pbxproj sed -i '' 's/iPhone Developer/iPhone Distribution/' Yattee.xcodeproj/project.pbxproj - - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: '26.0.1' - name: Clear SPM cache run: rm -rf ~/Library/Caches/org.swift.swiftpm/artifacts - uses: maierj/fastlane-action@v3.0.0 @@ -66,9 +63,6 @@ jobs: run: | sed -i '' 's/match AppStore/match Direct/' Yattee.xcodeproj/project.pbxproj sed -i '' 's/3rd Party Mac Developer Application/Developer ID Application/' Yattee.xcodeproj/project.pbxproj - - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: '26.0.1' - name: Clear SPM cache run: rm -rf ~/Library/Caches/org.swift.swiftpm/artifacts - uses: maierj/fastlane-action@v3.0.0