diff --git a/fastlane/Fastfile b/fastlane/Fastfile index e8798ddd..5adcb917 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -31,6 +31,7 @@ app_identifier = ENV["APP_ID"] || CredentialsManager::AppfileConfig.try_fetch_va app_name = i18nEnJSON['app']['name'] sentry_project_slug = ENV["SENTRY_PROJECT_SLUG"] app_build_path = ENV["APP_BUILD_PATH"] || "platforms" # based on nativescript.config.js !!! +git_basic_authorization = Base64.strict_encode64(ENV["GIT_AUTHORIZATION"]) desc 'test lane' lane :test do @@ -274,14 +275,14 @@ platform :ios do type: 'development', clone_branch_directly:true, generate_apple_certs: false, - git_basic_authorization: Base64.strict_encode64(GIT_AUTHORIZATION), + git_basic_authorization: git_basic_authorization, api_key: api_key ) match( type: "appstore", clone_branch_directly:true, generate_apple_certs: false, - git_basic_authorization: Base64.strict_encode64(GIT_AUTHORIZATION), + git_basic_authorization: git_basic_authorization, api_key: api_key ) end @@ -299,7 +300,7 @@ platform :ios do type: "adhoc", force_for_new_devices: true, generate_apple_certs: false, - git_basic_authorization: Base64.strict_encode64(GIT_AUTHORIZATION), + git_basic_authorization: git_basic_authorization, api_key: api_key ) else @@ -307,7 +308,7 @@ platform :ios do type: "appstore", clone_branch_directly:true, generate_apple_certs: false, - git_basic_authorization: Base64.strict_encode64(GIT_AUTHORIZATION), + git_basic_authorization: git_basic_authorization, api_key: api_key ) end