瀏覽代碼

ios: update fastlane Fastfile

j8
Saúl Ibarra Corretgé 6 年之前
父節點
當前提交
985385f364
共有 2 個檔案被更改,包括 6 行新增3 行删除
  1. 4
    1
      ios/fastlane/Fastfile
  2. 2
    2
      ios/fastlane/README.md

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

1
+ENV["FASTLANE_SKIP_UPDATE_CHECK"] = "1"
2
+opt_out_usage
3
+
1
 default_platform(:ios)
4
 default_platform(:ios)
2
 
5
 
3
 platform :ios do
6
 platform :ios do
4
   desc "Push a new beta build to TestFlight"
7
   desc "Push a new beta build to TestFlight"
5
-  lane :beta do
8
+  lane :deploy do
6
     # Set the app identifier
9
     # Set the app identifier
7
     update_app_identifier(
10
     update_app_identifier(
8
       xcodeproj: "app/app.xcodeproj",
11
       xcodeproj: "app/app.xcodeproj",

+ 2
- 2
ios/fastlane/README.md 查看文件

16
 
16
 
17
 # Available Actions
17
 # Available Actions
18
 ## iOS
18
 ## iOS
19
-### ios beta
19
+### ios deploy
20
 ```
20
 ```
21
-fastlane ios beta
21
+fastlane ios deploy
22
 ```
22
 ```
23
 Push a new beta build to TestFlight
23
 Push a new beta build to TestFlight
24
 
24
 

Loading…
取消
儲存