You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ steps:
49
49
50
50
| name | description | required |
51
51
| ----------- | ----------- | ----------- |
52
-
| `version-file` | Specify a path to search for the unity project version text file. Useful if there are multiple projects in a single repo. | false |
52
+
| `version-file` | Specify a path to search for the unity project version text file. Useful if there are multiple projects in a single repo. Pass `None` if creating a new project to skip file search. | false |
53
53
| `unity-version` | Specify the Unity version(s) to install. You must include the changeset! i.e `2019.4.13f1 (518737b1de84)`. ***This will override any version specified in the `version-file`!*** | false |
54
54
| `build-targets` | Specify the build targets to install for. Remaps to corresponding module. One or more of `StandaloneWindows64` `WSAPlayer` `StandaloneOSX` `iOS` `StandaloneLinux64` `Android` `Lumin` `WebGL` `VisionOS`. | false |
55
55
| `modules` | Modules to install with the editor. This list can be different per editor version. | false |
Copy file name to clipboardExpand all lines: action.yml
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,11 @@
1
1
name: 'unity-setup'
2
-
description: 'A GitHub action for setting up the Unity Game Engine for CI/CD workflows.'
2
+
description: A GitHub action for setting up the Unity Game Engine for CI/CD workflows.
3
+
branding:
4
+
icon: 'download'
5
+
color: 'blue'
3
6
inputs:
4
7
version-file:
5
-
description: 'Specify a path to search for the unity project version text file. Useful if there are multiple projects in a single repo.'
8
+
description: 'Specify a path to search for the unity project version text file. Useful if there are multiple projects in a single repo. Pass `None` if creating a new project to skip file search.'
0 commit comments