浏览代码

fastlane: prepare for open beta access

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

+ 1
- 1
android/fastlane/Fastfile 查看文件

@@ -24,7 +24,7 @@ platform :android do
24 24
 
25 25
         # Upload built artifact to the Closed Beta track
26 26
         upload_to_play_store(
27
-            track: "Closed Beta",
27
+            track: "Beta",
28 28
             json_key: ENV["JITSI_JSON_KEY_FILE"],
29 29
             skip_upload_metadata: true,
30 30
             skip_upload_images: true,

+ 5
- 1
ios/fastlane/Fastfile 查看文件

@@ -61,7 +61,11 @@ platform :ios do
61 61
     )
62 62
 
63 63
     # Upload the build to TestFlight (but don't distribute it)
64
-    upload_to_testflight(skip_submission: true, skip_waiting_for_build_processing: true)
64
+    upload_to_testflight(
65
+      distribute_external: true,
66
+      reject_build_waiting_for_review: true,
67
+      skip_submission: false,
68
+      skip_waiting_for_build_processing: false)
65 69
 
66 70
     # Cleanup
67 71
     clean_build_artifacts

正在加载...
取消
保存