From a13962f8c9fd403e486d075655185ead1aff12ed Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Sat, 23 May 2026 13:49:15 +0500 Subject: [PATCH 1/5] ci: fix ios workflow --- .github/workflows/ios.preview.firebase.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ios.preview.firebase.yml b/.github/workflows/ios.preview.firebase.yml index b3efaf1cf..7d9f96a56 100644 --- a/.github/workflows/ios.preview.firebase.yml +++ b/.github/workflows/ios.preview.firebase.yml @@ -36,7 +36,7 @@ jobs: - name: Setup Xcode uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: "26.1.1" + xcode-version: "26.4.1" - name: Install node modules run: | From 2a6cc905927d8f03ceb99a9d594f6635f6b57399 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Mon, 25 May 2026 08:43:46 +0500 Subject: [PATCH 2/5] ci: fix missing ios platform error --- .github/workflows/ios.preview.firebase.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ios.preview.firebase.yml b/.github/workflows/ios.preview.firebase.yml index 7d9f96a56..759bce490 100644 --- a/.github/workflows/ios.preview.firebase.yml +++ b/.github/workflows/ios.preview.firebase.yml @@ -36,7 +36,13 @@ jobs: - name: Setup Xcode uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: "26.4.1" + xcode-version: "26.1.1" + + - name: Setup iOS Platform + run: | + xcodebuild -downloadPlatform iOS -exportPath ~/Downloads + iphonesimulator_26.1_23B86.dmg + xcodebuild -importplatform ~/Downloads/iphonesimulator_26.1_23B86.dmg - name: Install node modules run: | From 930e31d109370897c89b98562bc337c06a35c757 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Mon, 25 May 2026 08:44:08 +0500 Subject: [PATCH 3/5] ci: update --- .github/workflows/ios.preview.firebase.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ios.preview.firebase.yml b/.github/workflows/ios.preview.firebase.yml index 759bce490..1f38c21e8 100644 --- a/.github/workflows/ios.preview.firebase.yml +++ b/.github/workflows/ios.preview.firebase.yml @@ -41,7 +41,6 @@ jobs: - name: Setup iOS Platform run: | xcodebuild -downloadPlatform iOS -exportPath ~/Downloads - iphonesimulator_26.1_23B86.dmg xcodebuild -importplatform ~/Downloads/iphonesimulator_26.1_23B86.dmg - name: Install node modules From d31eaef6d4e8736907925dc07d446b56630fc50a Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Mon, 25 May 2026 10:17:22 +0500 Subject: [PATCH 4/5] ci: update --- .github/workflows/ios.preview.firebase.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ios.preview.firebase.yml b/.github/workflows/ios.preview.firebase.yml index 1f38c21e8..f77c1934d 100644 --- a/.github/workflows/ios.preview.firebase.yml +++ b/.github/workflows/ios.preview.firebase.yml @@ -41,7 +41,7 @@ jobs: - name: Setup iOS Platform run: | xcodebuild -downloadPlatform iOS -exportPath ~/Downloads - xcodebuild -importplatform ~/Downloads/iphonesimulator_26.1_23B86.dmg + xcodebuild -importPlatform ~/Downloads/iphonesimulator_26.1_23B86.dmg - name: Install node modules run: | From a1575ab5eac48973085d558ddffaccd939ac4c0b Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Mon, 25 May 2026 10:18:16 +0500 Subject: [PATCH 5/5] ci: fix --- .github/workflows/ios.publish.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ios.publish.yml b/.github/workflows/ios.publish.yml index f10151714..a8c046e85 100644 --- a/.github/workflows/ios.publish.yml +++ b/.github/workflows/ios.publish.yml @@ -19,6 +19,11 @@ jobs: with: xcode-version: "26.1.1" + - name: Setup iOS Platform + run: | + xcodebuild -downloadPlatform iOS -exportPath ~/Downloads + xcodebuild -importPlatform ~/Downloads/iphonesimulator_26.1_23B86.dmg + - name: Install node modules run: | npm ci --ignore-scripts --prefer-offline --no-audit