Update fastlane

This commit is contained in:
J-Jamet
2019-09-14 12:47:42 +02:00
parent 4e06842d0f
commit a1b692abe5
2 changed files with 4 additions and 4 deletions

View File

@@ -45,13 +45,13 @@ platform :android do
) )
end end
desc "Deploy a new Pro Beta version to the Google Play" desc "Deploy a new Free Beta version to the Google Play"
lane :deploy_beta_free do lane :deploy_beta_free do
upload_to_play_store( upload_to_play_store(
track: "beta", track: "beta",
skip_upload_metadata: "false", skip_upload_metadata: "false",
skip_upload_images: "true", skip_upload_images: "true",
skip_upload_screenshots: "true", skip_upload_screenshots: "false",
apk: "./app/build/outputs/apk/free/release/app-free-release.apk", apk: "./app/build/outputs/apk/free/release/app-free-release.apk",
validate_only: "false", validate_only: "false",
) )
@@ -64,7 +64,7 @@ platform :android do
track: "beta", track: "beta",
skip_upload_metadata: "false", skip_upload_metadata: "false",
skip_upload_images: "true", skip_upload_images: "true",
skip_upload_screenshots: "true", skip_upload_screenshots: "false",
apk: "./app/build/outputs/apk/pro/release/app-pro-release.apk", apk: "./app/build/outputs/apk/pro/release/app-pro-release.apk",
validate_only: "false", validate_only: "false",
) )

View File

@@ -30,7 +30,7 @@ Build a new Beta version
``` ```
fastlane android deploy_beta_free fastlane android deploy_beta_free
``` ```
Deploy a new Pro Beta version to the Google Play Deploy a new Free Beta version to the Google Play
### android deploy_beta_pro ### android deploy_beta_pro
``` ```
fastlane android deploy_beta_pro fastlane android deploy_beta_pro