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