forked from openMF/mobile-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1.16 KB
/
build-android-app.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: KMP Build android app
on:
workflow_dispatch:
inputs:
android_package_name:
description: 'Name of the Android project module'
type: string
required: true
default: 'mifospay-android'
build_type:
description: 'Type of build to perform'
type: string
required: false
default: 'Release'
jobs:
build_android:
name: Build Android App
runs-on: macos-latest
permissions:
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build Android App
uses: ./.github/actions/build-android-app
id: build-android
with:
android_package_name: ${{ inputs.android_package_name }}
build_type: ${{ inputs.build_type }}
google_services: ${{ secrets.GOOGLESERVICES }}
key_store: ${{ secrets.ORIGINAL_KEYSTORE_FILE }}
key_store_password: ${{ secrets.ORIGINAL_KEYSTORE_FILE_PASSWORD }}
key_store_alias: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS }}
key_store_alias_password: ${{ secrets.ORIGINAL_KEYSTORE_ALIAS_PASSWORD }}