-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (27 loc) · 860 Bytes
/
action.yml
File metadata and controls
27 lines (27 loc) · 860 Bytes
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
name: Buildalon Unity Action
description: A Github Action to execute Unity Editor command line arguments.
branding:
icon: cpu
color: red
inputs:
editor-path:
description: 'Path to the Unity Editor. If not provided, the action will look it up from the project-path or the environment variable UNITY_EDITOR_PATH.'
required: false
project-path:
description: 'Path to the Unity project. If not provided, the action will use the environment variable UNITY_PROJECT_PATH.'
required: false
build-target:
description: 'Unity build target.'
required: false
default: ''
args:
description: 'Unity Editor cli arguments.'
required: false
default: '-quit -batchmode -nographics'
log-name:
description: 'Name of the Unity log file.'
required: false
default: 'Unity'
runs:
using: node24
main: dist/index.js