forked from r0adkll/upload-google-play
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaction.yml
More file actions
35 lines (35 loc) · 1.34 KB
/
action.yml
File metadata and controls
35 lines (35 loc) · 1.34 KB
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
name: 'Upload Android Release to Play Store (internal track publishing is default)'
description: 'An action to upload a signed Android release (.apk or .aab) to the Google Play Store Developer Console'
author: 'devussy'
branding:
icon: 'truck'
color: 'red'
inputs:
serviceAccountJson:
description: 'The service account json private key file to authorize the upload request'
required: false
serviceAccountJsonPlainText:
description: 'The raw json text of the service account private key to authorize the upload request'
required: false
packageName:
description: 'The package name, or Application Id, of the app you are uploading'
required: true
releaseFile:
description: 'The Android release file to upload (.apk or .aab)'
required: true
track:
description: 'The track in which you want to assign the uploaded app.'
default: 'production'
required: true
userFraction:
description: 'Portion of users who should get the staged version of the app. Accepts values between 0.0 and 1.0 (exclusive-exclusive).'
required: false
whatsNewDirectory:
description: 'The directory of localized whats new files'
required: false
mappingFile:
description: 'The mapping.txt file used to de-obfuscate your stack traces from crash reports'
required: false
runs:
using: 'node12'
main: 'lib/main.js'