diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 1122c02..2f5dac3 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -111,7 +111,7 @@ end desc "Deploy a new version to the Google Play" - lane :release do + lane :alpha do supply( apk: 'app/build/outputs/apk/release/app-release.apk', mapping: 'app/build/outputs/apk/release/mapping.txt', @@ -123,6 +123,22 @@ ) end + desc "Deploy a new version to the Google Play" + lane :beta do + supply( + track: 'alpha', + track_promote_to: beta, + ) + end + + desc "Deploy a new version to the Google Play" + lane :production do + supply( + track: 'beta', + track_promote_to: production, + ) + end + # You can define as many lanes as you want after_all do |lane|