From 2b4307dee9a74aeae6df1e871befb21f11308a80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 14 Nov 2019 15:44:03 +0100 Subject: [PATCH] ios: fix Fastlane beta build submissions --- ios/fastlane/Fastfile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 6752ef6a4..4f5f150f5 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -62,11 +62,19 @@ platform :ios do # Upload the build to TestFlight (but don't distribute it) upload_to_testflight( + beta_app_description: ENV["JITSI_CHANGELOG"], + beta_app_feedback_email: ENV["JITSI_REVIEW_EMAIL"], + beta_app_review_info: { + contact_email: ENV["JITSI_REVIEW_EMAIL"], + demo_account_name: ENV["JITSI_DEMO_ACCOUNT"], + demo_account_password: ENV["JITSI_DEMO_PASSWORD"], + }, changelog: ENV["JITSI_CHANGELOG"], + demo_account_required: false, distribute_external: true, - reject_build_waiting_for_review: true, - skip_submission: false, - skip_waiting_for_build_processing: false) + reject_build_waiting_for_review: true + uses_non_exempt_encryption: false + ) # Cleanup clean_build_artifacts