From 46e11a369cc0cdf28545c36db5c65adb3ac37bb3 Mon Sep 17 00:00:00 2001 From: Burhanuddin Rashid Date: Wed, 17 Jul 2024 13:57:47 +0530 Subject: [PATCH] Api key path to latest build number --- ios/fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index e02fe5b..801e4bc 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -27,7 +27,7 @@ platform :ios do end def bump_build_number() - latest_build_number = latest_testflight_build_number(initial_build_number: 0) + latest_build_number = latest_testflight_build_number(initial_build_number: 0,api_key_path: "fastlane/store.json") return (latest_build_number + 1) end end