From f8d4758e6b28f6857f6e7e42affbc27efd27e575 Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Sun, 3 May 2026 21:27:24 +0700 Subject: [PATCH] Run iOS Fastlane review-submit on macOS Linux EAS runners don't ship Ruby/Bundler, so `bundle install` fails with "bundle: command not found". macOS workflow runners have Ruby 3.2 + Fastlane preinstalled, so switching this job to runs_on: macos-medium gets us there without a manual install step. --- packages/app/.eas/workflows/release-mobile.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/app/.eas/workflows/release-mobile.yml b/packages/app/.eas/workflows/release-mobile.yml index 6ce61f789..33f1c2ea6 100644 --- a/packages/app/.eas/workflows/release-mobile.yml +++ b/packages/app/.eas/workflows/release-mobile.yml @@ -43,6 +43,7 @@ jobs: name: Submit iOS for App Store review needs: [submit_ios] environment: production + runs_on: macos-medium steps: - uses: eas/checkout - name: Install fastlane