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.
This commit is contained in:
Jinwoo Hong 2026-06-15 23:46:19 -07:00 committed by GitHub
parent 47aec80662
commit 1f80d8bcd0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -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",