Created
December 2, 2020 08:19
-
-
Save Zfinix/4780ef7447c8787f9a9d10a4a44a141c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # place at android/fastlane/Fastfile | |
| desc "Deploy a new beta build to Google Play" | |
| lane :beta do | |
| build_number = number_of_commits() | |
| Dir.chdir "../.." do | |
| sh("flutter", "packages", "get") | |
| sh("flutter", "clean") | |
| sh("flutter", "build", "appbundle", "--build-number=#{build_number}") | |
| end | |
| #upload_to_play_store(track: 'beta', aab: '../build/app/outputs/bundle/release/app.aab') | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment