浏览代码

ios: fix Fastlane beta build submissions

master
Saúl Ibarra Corretgé 6 年前
父节点
当前提交
2b4307dee9
共有 1 个文件被更改,包括 11 次插入3 次删除
  1. 11
    3
      ios/fastlane/Fastfile

+ 11
- 3
ios/fastlane/Fastfile 查看文件

62
 
62
 
63
     # Upload the build to TestFlight (but don't distribute it)
63
     # Upload the build to TestFlight (but don't distribute it)
64
     upload_to_testflight(
64
     upload_to_testflight(
65
+      beta_app_description: ENV["JITSI_CHANGELOG"],
66
+      beta_app_feedback_email: ENV["JITSI_REVIEW_EMAIL"],
67
+      beta_app_review_info: {
68
+        contact_email: ENV["JITSI_REVIEW_EMAIL"],
69
+        demo_account_name: ENV["JITSI_DEMO_ACCOUNT"],
70
+        demo_account_password: ENV["JITSI_DEMO_PASSWORD"],
71
+      },
65
       changelog: ENV["JITSI_CHANGELOG"],
72
       changelog: ENV["JITSI_CHANGELOG"],
73
+      demo_account_required: false,
66
       distribute_external: true,
74
       distribute_external: true,
67
-      reject_build_waiting_for_review: true,
68
-      skip_submission: false,
69
-      skip_waiting_for_build_processing: false)
75
+      reject_build_waiting_for_review: true
76
+      uses_non_exempt_encryption: false
77
+    )
70
 
78
 
71
     # Cleanup
79
     # Cleanup
72
     clean_build_artifacts
80
     clean_build_artifacts

正在加载...
取消
保存