Skip to content

Instantly share code, notes, and snippets.

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

  • Save Zfinix/92cc9966c95fc1413224abc0685d36b9 to your computer and use it in GitHub Desktop.

Select an option

Save Zfinix/92cc9966c95fc1413224abc0685d36b9 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