select AppStore xcconfig for AppStoreRelease lane

This commit is contained in:
Ivan Smolin 2019-08-23 13:57:38 +03:00
parent 1250921a31
commit 2cd0b029d5
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ end
def make_options_for_lane_name(lane_name)
method = configuration_type_from_lane_name(lane_name)
return {
:configuration => lane_name,
:configuration => lane_name.start_with?("AppStore") ? "AppStore" : lane_name,
:configuration_name => lane_name.start_with?("AppStore") ? "AppStore" : "Release",
:method => method,
:type => profile_type_from_configuration_type(method)