From abd8682b49460a3fcfcea50bcfccfe748f8eff39 Mon Sep 17 00:00:00 2001 From: Doug Borg Date: Sat, 14 Feb 2026 15:01:32 -0700 Subject: [PATCH] Build with iOS 26 SDK to meet App Store deadline Apple requires all iOS/iPadOS apps to be built with the iOS 26 SDK (Xcode 26+) starting April 28, 2026. Switch the build-ios and upload-to-stores jobs from macos-latest (macOS 15 / Xcode 16) to macos-26 (macOS 26 / Xcode 26). Co-Authored-By: Claude Opus 4.6 --- .github/workflows/workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 182466f..093354b 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -142,7 +142,7 @@ jobs: build-ios: name: Build iOS needs: get-version - runs-on: macos-latest + runs-on: macos-26 steps: - name: Checkout repository uses: actions/checkout@v5 @@ -290,7 +290,7 @@ jobs: upload-to-stores: name: Upload to App Stores needs: [get-version, build-android-aab, build-ios] - runs-on: macos-latest # Need macOS for iOS uploads + runs-on: macos-26 # Need macOS for iOS uploads if: needs.get-version.outputs.should_upload_to_stores == 'true' steps: - name: Download AAB artifact for Google Play