Skip to content

Instantly share code, notes, and snippets.

@shafayathossain
Created December 1, 2021 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shafayathossain/dfaa242ba8ef477694e67d3367ab6a40 to your computer and use it in GitHub Desktop.
Save shafayathossain/dfaa242ba8ef477694e67d3367ab6a40 to your computer and use it in GitHub Desktop.
Responsible for uploading .aab to Firebase app distribution.
desc "Responsible for uploading .aab to Firebase app distribution."
lane :distribute_to_firebase do
firebase_app_distribution(
app: FIREBASE_APP_ID,
release_notes: "Uploaded from CI/CD",
android_artifact_type: "AAB",
android_artifact_path: BUNDLE_FILE_PATH,
service_credentials_file: FIREBASE_KEY_PATH,
groups: "tester-team"
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment