From 36d477064837390438310cfe07fe9b6675b3bce7 Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Wed, 15 May 2019 18:17:22 +0300 Subject: [PATCH] fix order of code signing and archive build --- xcode/commonFastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index 0660eb9..4171a59 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -92,8 +92,8 @@ private_lane :buildConfiguration do |options| if options[:uploadToFabric] options = merge_options_with_config_file(options) - buildArchive(options) syncCodeSigning(options) + buildArchive(options) uploadToFabric(options) end