Skip to content

Commit a4923ff

Browse files
committed
🧱 ci: fix bug in fastfile
1 parent cc62ced commit a4923ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎SNUTT/fastlane/Fastfile‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ platform :ios do
454454
build_configurations: app_config.configuration,
455455
bundle_identifier: app_config.bundle_id,
456456
code_sign_identity: signing_type.identity,
457-
profile_name: ENV["sigh_#{app_config.bundle_id}_#{signing_type}_profile-name"]
457+
profile_name: ENV["sigh_#{app_config.bundle_id}_#{signing_type.match_type}_profile-name"]
458458
)
459459

460460
update_code_signing_settings(
@@ -464,7 +464,7 @@ platform :ios do
464464
build_configurations: app_config.configuration,
465465
bundle_identifier: app_config.widget_bundle_id,
466466
code_sign_identity: signing_type.identity,
467-
profile_name: ENV["sigh_#{app_config.widget_bundle_id}_#{signing_type}_profile-name"]
467+
profile_name: ENV["sigh_#{app_config.widget_bundle_id}_#{signing_type.match_type}_profile-name"]
468468
)
469469
end
470470
end

0 commit comments

Comments
 (0)