-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
action.yml
29 lines (29 loc) · 1008 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
name: 'Internal App Sharing'
description: 'Upload aab/apk to Internal App Sharing on Play Console'
inputs:
serviceAccountJsonPlainText:
description: 'The service account json plain text private key file to authorize the upload request'
required: true
packageName:
description: 'Package name of the application'
required: true
apkFilePath:
description: '.apk file path'
required: false
aabFilePath:
description: '.aab file path'
required: false
outputs:
downloadUrl:
description: 'The download URL generated for the uploaded artifact.'
certificateFingerprint:
description: 'The SHA256 fingerprint of the certificate used to signed the generated artifact.'
sha256:
description: 'The SHA-256 hash of the artifact represented as a lowercase hexadecimal number, matching the output of the sha256sum command.'
runs:
using: 'node12'
main: 'dist/index/index.js'
post: 'dist/cleanup/index.js'
branding:
icon: 'upload-cloud'
color: 'green'