浏览代码

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

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

@@ -16,9 +16,9 @@ or alternatively using `brew cask install fastlane`
16 16
 
17 17
 # Available Actions
18 18
 ## iOS
19
-### ios beta
19
+### ios deploy
20 20
 ```
21
-fastlane ios beta
21
+fastlane ios deploy
22 22
 ```
23 23
 Push a new beta build to TestFlight
24 24
 

正在加载...
取消
保存