universal-apk-builder icon indicating copy to clipboard operation
universal-apk-builder copied to clipboard

This action converts given *.aab file to universal *.apk file

Universal APK Builder Action

Action Build

This action converts given *.aab file to universal *.apk file. This file includes all dynamic modules.

Inputs

aab_path

Required Path to input *.aab file

output_dir

Optional Path to directory where outputs are stored

Default: output

keystore_path

Required Path to keystore file (*.jks)

keystore_password

Required & Sensitive Keystore password

keystore_alias

Required & Sensitive Keystore alias

keystore_alias_password

Required & Sensitive Keystore alias password

Outputs

universal_apk_path

Path to final universal APK

Example usage

- name: Build Universal APK
  uses: skywall/[email protected]
  with:
    aab_path: "/path/to/file.aab"
    keystore_path: "/path/to/keystore.jks"
    keystore_password: ${{secrets.KEYSTORE_PASSWORD}}
    keystore_alias: ${{secrets.KEYSTORE_ALIAS}}
    keystore_alias_password: ${{secrets.KEYSTORE_PASSWORD}}
- name: Do something with Universal APK
  with:
    apk_path: ${{env.UNIVERSAL_APK_PATH}}

How to test locally

Use Act.

$> brew install nektos/tap/act
$> act -j test-local -b