KMP Promote Android App to Beta #13
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 Promote Android App to Beta | |
on: | |
workflow_dispatch: | |
inputs: | |
release_type: | |
description: 'Type of release' | |
type: string | |
required: true | |
permissions: | |
contents: write | |
jobs: | |
promote_android_app: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Promote Android App | |
uses: ./.github/actions/android-beta | |
with: | |
release_type: ${{ inputs.release_type }} | |
android_package_name: 'mifospay-android' | |
keystore_file: ${{ secrets.UPLOAD_KEYSTORE_FILE }} | |
keystore_password: ${{ secrets.UPLOAD_KEYSTORE_FILE_PASSWORD }} | |
key_alias: ${{ secrets.UPLOAD_KEYSTORE_ALIAS }} | |
key_password: ${{ secrets.UPLOAD_KEYSTORE_ALIAS_PASSWORD }} | |
google_services: ${{ secrets.GOOGLESERVICES }} | |
playstore_creds: ${{ secrets.PLAYSTORECREDS }} |