Upgrade fastlane

This commit is contained in:
J-Jamet
2018-04-26 12:18:14 +02:00
parent 9a900b32b2
commit e61571fcec
2 changed files with 14 additions and 5 deletions

View File

@@ -46,16 +46,20 @@ platform :android do
end
desc "Deploy a new Pro Beta version to the Google Play"
lane :deploy_beta_google_pro do
lane :deploy_beta_free do
upload_to_play_store(
track: "beta",
skip_upload_metadata: "true",
skip_upload_images: "false",
skip_upload_screenshots: "true",
apk: "./app/build/outputs/apk/free/release/app-free-release.apk",
validate_only: "true",
validate_only: "false",
)
# sh("cp", "-a", "./pro/.", "./")
end
desc "Deploy a new Pro Beta version to the Google Play"
lane :deploy_beta_pro do
sh("cp", "-a", "./pro/.", "./")
upload_to_play_store(
track: "beta",
skip_upload_metadata: "true",

View File

@@ -26,9 +26,14 @@ Runs all the tests
fastlane android build_beta
```
Build a new Beta version
### android deploy_beta_google_pro
### android deploy_beta_free
```
fastlane android deploy_beta_google_pro
fastlane android deploy_beta_free
```
Deploy a new Pro Beta version to the Google Play
### android deploy_beta_pro
```
fastlane android deploy_beta_pro
```
Deploy a new Pro Beta version to the Google Play