fix: assembleRelease and build issues #10
Workflow file for this run
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: Upload Demo App on Firebase | |
on: | |
workflow_dispatch: | |
inputs: | |
tester_groups: | |
description: 'Comma-separated list of tester groups' | |
required: true | |
default: 'mifos-mobile-testers' | |
type: string | |
pull_request: | |
types: [ synchronize, opened, reopened, edited, closed, labeled ] | |
branches: | |
- 'development' | |
- 'master' | |
concurrency: | |
group: firebase-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
upload_demo_app_on_firebase: | |
runs-on: macos-latest | |
if: github.event.label.name == 'firebase-test-on' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: ☁️ Deploy Android App on Firebase | |
uses: openMF/[email protected] | |
with: | |
release_type: 'demo' | |
android_package_name: 'androidApp' | |
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 }} | |
tester_groups: ${{ inputs.tester_groups }} |