From a5a84fa5b5eae7eb35af0c94a304631bc7bc631f Mon Sep 17 00:00:00 2001 From: Braden Mars Date: Tue, 29 Aug 2023 05:22:48 -0500 Subject: [PATCH] feat(fastlane): add upload to testflight step for beta lane Signed-off-by: Braden Mars --- fastlane/Fastfile | 1 + 1 file changed, 1 insertion(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index c79db631..f4f73c81 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -90,5 +90,6 @@ platform :ios do desc 'Publish Beta Release' lane :beta do build(target: 'prod', profile: 'appstore', config: 'Release') + upload_to_testflight(skip_waiting_for_build_processing: false) end end