-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yml
37 lines (37 loc) · 974 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
37
name: "Unity Build Action"
description: "Build Unity project, and can run on Linux, Mac, Windows, or self-hosted"
inputs:
unity-version:
description: "For example, 2018.4.16f1"
required: true
unity-username:
description: "Unity username"
required: true
unity-password:
description: "Unity password"
required: true
unity-serial:
description: "Unity serial"
required: true
build-target:
description: "Choose Android, iOS, Mac, Windows, or WebGL"
required: true
project-path:
description: "Unity project path"
required: false
default: .
execute-method:
description: "Use by -executeMethod"
required: false
default: UnityBuild.BatchBuild.Build
output-path:
description: "Output path of default execute-method"
required: false
default: Output
command-args:
description: "Build command args"
required: false
runs:
using: "node12"
main: "build.js"
post: "returnlicense.js"