From 51271e8a2a585ec65c4c9d16de2966b95324e546 Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Thu, 21 Feb 2019 13:29:57 +0300 Subject: [PATCH] try to use project repo as storage --- xcode/commonFastfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index a639e41..82d8abe 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -76,7 +76,7 @@ private_lane :buildConfiguration do |options| end private_lane :createPushCertificate do |options| - certificates_path = File.expand_path "../certificates" + certificates_path = File.expand_path "../pushcerts" Dir.mkdir(certificates_path) unless File.directory?(certificates_path) get_push_certificate( @@ -101,7 +101,10 @@ private_lane :syncCodeSignning do |options| type: "development", readonly: true, storage_mode: "git", - git_url: "git@github.com:petropavel13/FastlaneCertificates.git", - keychain_password: keychain_password + git_url: options[:git_url], + git_branch: "fastlane_certificates", + keychain_password: keychain_password, + skip_docs: true, + platform: "ios" ) end