Browse Source

ios: update fastlane Fastfile

master
Saúl Ibarra Corretgé 6 years ago
parent
commit
985385f364
2 changed files with 6 additions and 3 deletions
  1. 4
    1
      ios/fastlane/Fastfile
  2. 2
    2
      ios/fastlane/README.md

+ 4
- 1
ios/fastlane/Fastfile View File

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 View File

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…
Cancel
Save