Skip to content

Instantly share code, notes, and snippets.

@Zfinix
Created December 2, 2020 08:19
Show Gist options
  • Select an option

  • Save Zfinix/4780ef7447c8787f9a9d10a4a44a141c to your computer and use it in GitHub Desktop.

Select an option

Save Zfinix/4780ef7447c8787f9a9d10a4a44a141c to your computer and use it in GitHub Desktop.
# 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