forked from chkfung/android-version-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
34 lines (34 loc) · 937 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: "Change the gradle build parameters"
description: "This action will change the version code, version name and application id in build.gradle . "
inputs:
gradlePath:
description: "Gradle path to override version"
required: true
default: "app/build.gradle"
versionCode:
description: "The new version code"
required: false
versionName:
description: "The new version name"
required: false
applicationId:
description: "The application id to set"
required: false
keystoreAlias:
description: "The key store alias to set"
required: false
keystorePassword:
description: "The key store password to set"
required: false
keystoreAliasPassword:
description: "The key store alias password to set"
required: false
outputs:
result: # id of output
description: "Action Result"
runs:
using: "node20"
main: "dist/index.js"
branding:
color: 'blue'
icon: 'anchor'