forked from skywall/universal-apk-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
34 lines (32 loc) · 899 Bytes
/
action.yml
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
name: "Universal APK Builder"
description: "Build Universal APK file from AAB file"
author: "Lukáš Sztefek (@skywall)"
inputs:
aab_path:
description: "Path to input *.aab file"
required: true
output_dir:
description: "Path to directory where outputs are stored"
required: false
default: "output"
keystore_path:
description: "Path to keystore file (*.jks)"
required: true
keystore_password:
description: "Keystore password"
required: true
keystore_alias:
description: "Keystore alias"
required: true
keystore_alias_password:
description: "Keystore alias password"
required: true
outputs:
universal_apk_path:
description: "Final universal *.apk file path"
branding:
icon: "package"
color: "green"
runs:
using: "docker"
image: "Dockerfile"