Procházet zdrojové kódy

ios: update fastlane Fastfile

master
Saúl Ibarra Corretgé před 6 roky
rodič
revize
985385f364
2 změnil soubory, kde provedl 6 přidání a 3 odebrání
  1. 4
    1
      ios/fastlane/Fastfile
  2. 2
    2
      ios/fastlane/README.md

+ 4
- 1
ios/fastlane/Fastfile Zobrazit soubor

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 Zobrazit soubor

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
 

Načítá se…
Zrušit
Uložit