From b0acadec6be6be6ef02812e3ff9e4ab02f6cb54f Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sun, 26 Jul 2020 18:04:00 +0200 Subject: [PATCH] ios: Fastfile upload to test_flight This is the only command I could get to work using an app specific password. --- ios/fastlane/Fastfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 8a07f359..36210190 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -5,6 +5,7 @@ platform :ios do lane :release do increment_build_number(build_number: number_of_commits) build_app(workspace: "Runner.xcworkspace", scheme: "Runner") - upload_to_app_store(skip_metadata: true, skip_screenshots: true) + #upload_to_app_store(skip_metadata: true, skip_screenshots: true) + upload_to_testflight(apple_id:"1466519634", skip_waiting_for_build_processing:true) end end