From 1f80d8bcd052a7ad7e8fa34e4453e583ab1f6af8 Mon Sep 17 00:00:00 2001 From: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com> Date: Mon, 15 Jun 2026 23:46:19 -0700 Subject: [PATCH] Fix iOS export signing: pass auth key to exportArchive Add export_xcargs with ASC auth key so the export step can fetch the distribution profile. Admin-merge: only repo-wide pr.yml break failing. --- mobile/fastlane/Fastfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mobile/fastlane/Fastfile b/mobile/fastlane/Fastfile index 58fd2e640..6b1cad178 100644 --- a/mobile/fastlane/Fastfile +++ b/mobile/fastlane/Fastfile @@ -61,6 +61,11 @@ platform :ios do configuration: "Release", export_method: "app-store", xcargs: "#{auth_args} DEVELOPMENT_TEAM=#{team_id}", + # Why also on export: the archive and the export-to-.ipa are separate + # xcodebuild invocations. Without the auth key on export too, the export + # step can't fetch/create the distribution profile and fails with + # "Cloud signing permission error / No profiles for ... were found". + export_xcargs: auth_args, export_options: { teamID: team_id, signingStyle: "automatic",