-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
36 lines (35 loc) · 932 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
35
36
name: "android-config-editor"
description: "Edit your Gradle file on the go for a more dynamic way of releasing Apps!"
inputs:
gradlePath:
description: "A path to the Gradle file to make changes to!"
required: true
default: "android/app/build.gradle"
applicationId:
description: "The new application ID"
required: false
versionCode:
description: "The new version code"
required: false
versionName:
description: "The new version name"
required: false
minSdkVersion:
description: "The new min SDK version"
required: false
targetSdkVersion:
description: "The new target SDK version"
required: false
debug:
description: "If to display debug logs on Action execution"
required: false
default: false
outputs:
result: # id of output
description: "Action Result"
runs:
using: "node20"
main: "dist/index.js"
branding:
color: 'blue'
icon: 'anchor'