-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (31 loc) · 945 Bytes
/
action.yml
File metadata and controls
31 lines (31 loc) · 945 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
28
29
30
31
name: 'unity action'
description: 'Convenient use of the Unity command line in GitHub Actions.'
inputs:
unity-path:
description: 'Path of Unity.exe'
required: true
unity-username:
description: 'Unity account username'
required: true
unity-password:
description: 'Unity account password'
required: true
unity-serial:
description: 'Unity license serial key. Used for Plus/Pro license activation.'
required: false
unity-license:
description: 'Unity alf file. Used for Personal license activation.'
required: false
project-path:
description: 'Unity project path. '
required: true
execute-method:
description: 'Execute the static method as soon as Unity opens the project.'
required: false
disable-gpu-skinning:
description: 'Disable Graphics Processing Unit (GPU) skinning at startup.'
required: false
runs:
using: 'node20'
main: 'src/main.js'
post: 'src/post.js'