KMP Publish Android App on Firebase #16
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
name: KMP Publish Android App on Firebase | |
on: | |
workflow_dispatch: | |
jobs: | |
publish_android_app_on_firebase: | |
name: Publish Android App on Firebase | |
runs-on: macos-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Publish Android App on Firebase | |
uses: ./.github/actions/android-firebase | |
with: | |
android_package_name: 'mifospay-android' | |
keystore_file: ${{ secrets.ORIGINAL_KEYSTORE_FILE }} | |
keystore_password: ${{ secrets.ORIGINAL_KEYSTORE_FILE_PASSWORD }} | |
keystore_alias: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS }} | |
keystore_alias_password: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS_PASSWORD }} | |
google_services: ${{ secrets.GOOGLESERVICES }} | |
firebase_creds: ${{ secrets.FIREBASECREDS }} | |