Created
December 1, 2021 17:08
-
-
Save shafayathossain/dfaa242ba8ef477694e67d3367ab6a40 to your computer and use it in GitHub Desktop.
Responsible for uploading .aab to Firebase app distribution.
This file contains 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
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