[Oztechan/AdTrace#12] Distribute Android build to Firebase App Distribution on merge#13
Merged
mustafaozhan merged 1 commit intoJul 4, 2026
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
After a merge to
develop, distribute the Android debug APK to the QA tester group via Firebase App Distribution.What
DistributeAndroidCI job, guarded withif: github.event_name == 'push'so it runs only after a merge todevelop— never on PRs.androidApp-debugartifact produced byAndroidBuild, then uploads it withwzieba/Firebase-Distribution-Github-Action.FIREBASE_SERVICE_ACCOUNT, GPG-armored like the other secrets and decrypted in-job withSECRET_PASSWORD) rather than the deprecated Firebase CLI token.DistributeAndroidinto theNotifyjob's failure condition (push-only)..gitignore: excludesfirebase-service-account.jsonand its.asc.Required CI secrets
FIREBASE_ANDROID_APP_ID✅FIREBASE_SERVICE_ACCOUNT✅ (armored service-account JSON)SECRET_PASSWORD(existing)Deferred
iOS distribution — separate ticket; needs Fastlane + code-signing (distribution cert, ad-hoc profile, App Store Connect API key).
Resolves #12