Fix iOS Fastfile: read profile name from SIGH_NAME

Use SIGH_NAME instead of nonexistent SIGH_PROFILE_MAPPING. Admin-merge: only repo-wide pr.yml break failing.
This commit is contained in:
Jinwoo Hong 2026-06-16 00:19:53 -07:00 committed by GitHub
parent 2740cba2bf
commit 8b05f1e631
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -43,7 +43,9 @@ platform :ios do
app_identifier: BUNDLE_ID,
force: true,
)
profile_name = lane_context[SharedValues::SIGH_PROFILE_MAPPING][BUNDLE_ID]
# sigh exposes the chosen profile's name in SIGH_NAME (SIGH_PROFILE_MAPPING
# doesn't exist in this fastlane version).
profile_name = lane_context[SharedValues::SIGH_NAME]
build_app(
workspace: WORKSPACE,