From 33bf2581a17306d950307ae8ac5169805686e96d Mon Sep 17 00:00:00 2001 From: Devin Binnie <52460000+devinbinnie@users.noreply.github.com> Date: Tue, 29 Mar 2022 11:35:55 -0400 Subject: [PATCH] Add `skip_waiting_for_build_processing` to CI build (#2027) --- fastlane/Fastfile | 1 + 1 file changed, 1 insertion(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 6fc1ddd4..9a662f2a 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -30,6 +30,7 @@ lane :publish_test do |options| end pilot( pkg: options[:path], + skip_waiting_for_build_processing: ENV['CI'] === 'true', api_key: api_key ) end \ No newline at end of file