From 1f2ed6f92b5719befaecc21e8b9dfc88af0166b6 Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Thu, 4 Apr 2019 17:02:26 +0300 Subject: [PATCH] fix profile type selection when checked uploadToAppStore --- xcode/commonFastfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 1ed252d..2908c76 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -84,6 +84,7 @@ private_lane :buildConfiguration do |options| installDependencies(options) if !(options[:uploadToFabric] || options[:uploadToAppStore]) + options = merge_options_with_config_file(options) options[:skip_package_ipa] = true syncCodeSigning(options) @@ -92,8 +93,9 @@ private_lane :buildConfiguration do |options| end if options[:uploadToFabric] - buildArchive(options) + options = merge_options_with_config_file(options) + buildArchive(options) syncCodeSigning(options) uploadToFabric(options) @@ -102,6 +104,7 @@ private_lane :buildConfiguration do |options| if options[:uploadToAppStore] options[:compileBitcode] = true options = options.merge(make_options_for_lane_name("AppStore")) + options = merge_options_with_config_file(options) syncCodeSigning(options)