a5859ca98e
Added Firebase Add scripts for deploy Android application Fix increment application bundle version Increase version for upload in build phase Try fix deploy android Android deploy first Remove unwanted artefact deletion
11 lines
261 B
Bash
Executable File
11 lines
261 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
RELEASE_NOTES="notes.txt"
|
|
|
|
git log --pretty=format:'%h %s' -n 5 > $RELEASE_NOTES
|
|
|
|
firebase appdistribution:distribute ./Result/app-release.apk \
|
|
--app $K8S_FIREBASE_ANDROID_APPLICATION \
|
|
--release-notes-file $RELEASE_NOTES \
|
|
--groups QA
|