From 7c32eeab79bdcc09a0e127ad75b368aae3962806 Mon Sep 17 00:00:00 2001 From: Brandon Date: Mon, 15 Jun 2020 11:17:09 -0400 Subject: [PATCH] Update fastlane to include the right services key file. --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 4b3988a3ad9..c508354be6f 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -104,7 +104,7 @@ platform :ios do sdk: "iphoneos", clean: true, skip_package_ipa: true, - xcargs: "-allowProvisioningUpdates BRAVE_API_KEY=\"#{sh("head", "-1", "#{ENV['HOME']}/.brave-api-key")}\"" + xcargs: "-allowProvisioningUpdates BRAVE_API_KEY=\"#{sh("head", "-1", "#{ENV['HOME']}/.brave-api-key")}\" BRAVE_SERVICES_API_KEY=\"#{sh("head", "-1", "#{ENV['HOME']}/.brave-services-api-key")}\"" } end