-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
62 lines (61 loc) · 1.75 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: 'google-play-console'
description: 'Transparent Google Play Console CLI wrapper for Github Action'
author: 'Konstantin Aksenov'
branding:
icon: 'upload'
color: 'blue'
inputs:
service-account-json:
description: 'Service account json as plain text'
required: true
template:
description: 'Template name, see documentation for available options'
default: "custom-script"
required: false
custom-script:
description: 'Custom script content'
required: false
package-name:
description: 'Package name'
required: false
version-code:
description: 'Version code'
required: false
track:
description: 'Target track'
required: false
default: 'internal'
path-to-apk:
description: 'Path to apk'
required: false
path-to-bundle:
description: 'Path to bundle'
required: false
path-to-mapping:
description: 'Path to deobfuscation mapping file'
required: false
changes-not-sent-for-review:
description: 'Do not send changes for review'
required: false
status:
description: 'The status of a release'
required: false
user-fraction:
description: 'Fraction of users who are eligible to receive the release. 0 < fraction < 1. To be set, release status must be "inProgress" or "halted".'
required: false
runs:
using: 'docker'
image: 'github-action/Dockerfile'
args:
- ${{ inputs.service-account-json }}
- ${{ inputs.template }}
- ${{ inputs.custom-script }}
- ${{ inputs.package-name }}
- ${{ inputs.version-code }}
- ${{ inputs.track }}
- ${{ inputs.path-to-apk }}
- ${{ inputs.path-to-bundle }}
- ${{ inputs.path-to-mapping }}
- ${{ inputs.changes-not-sent-for-review }}
- ${{ inputs.status }}
- ${{ inputs.user-fraction }}