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
- add `sign-package` command to sign upm packages
- added release channel support when looking up glob versions of the editor
- fixed `UnityVersion` release channel sorting `f > b > a`
- changed `UnityHub.ListAvailableReleases` return type from `string[]` to `UnityVersion[]`
Copy file name to clipboardExpand all lines: README.md
+26-13Lines changed: 26 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,25 +34,29 @@ With options always using double dashes (`--option`) and arguments passed direct
34
34
35
35
#### Auth
36
36
37
-
-`unity-cli license-version`: Print the Unity License Client version
38
-
-`unity-cli activate-license [options]`: Activate a Unity license
39
-
-`unity-cli return-license [options]`: Return a Unity license
37
+
-`unity-cli license-version`: Print the Unity License Client version.
38
+
-`unity-cli activate-license [options]`: Activate a Unity license.
39
+
-`unity-cli return-license [options]`: Return a Unity license.
40
40
41
41
#### Unity Hub
42
42
43
-
-`unity-cli hub-version`: Print the Unity Hub version
44
-
-`unity-cli hub-install [options]`: Install or update the Unity Hub
45
-
-`unity-cli hub-path`: Print the Unity Hub executable path
46
-
-`unity-cli hub [options] <args...>`: Run Unity Hub command line arguments (passes args directly to the hub executable)
43
+
-`unity-cli hub-version`: Print the Unity Hub version.
44
+
-`unity-cli hub-install [options]`: Install or update the Unity Hub.
45
+
-`unity-cli hub-path`: Print the Unity Hub executable path.
46
+
-`unity-cli hub [options] <args...>`: Run Unity Hub command line arguments (passes args directly to the hub executable).
47
47
48
48
#### Unity Editor
49
49
50
-
-`unity-cli setup-unity [options]`: Find or install the Unity Editor for a project or specific version
51
-
-`unity-cli uninstall-unity [options]`: Uninstall a Unity Editor version
52
-
-`unity-cli list-project-templates [options]`: List available Unity project templates for an editor
53
-
-`unity-cli create-project [options]`: Create a new Unity project from a template
54
-
-`unity-cli open-project [options]`: Open a Unity project in the Unity Editor
55
-
-`unity-cli run [options] <args...>`: Run Unity Editor command line arguments (passes args directly to the editor)
50
+
-`unity-cli setup-unity [options]`: Find or install the Unity Editor for a project or specific version.
51
+
-`unity-cli uninstall-unity [options]`: Uninstall a Unity Editor version.
52
+
-`unity-cli list-project-templates [options]`: List available Unity project templates for an editor.
53
+
-`unity-cli create-project [options]`: Create a new Unity project from a template.
54
+
-`unity-cli open-project [options]`: Open a Unity project in the Unity Editor.
55
+
-`unity-cli run [options] <args...>`: Run Unity Editor command line arguments (passes args directly to the editor).
56
+
57
+
#### Unity Package Manager
58
+
59
+
-`unity-cli sign-package [options]`: Sign a Unity package for distribution.
56
60
57
61
Run `unity-cli --help` for a full list of commands and options.
58
62
@@ -94,3 +98,12 @@ unity-cli open-project
94
98
```bash
95
99
unity-cli run --unity-project <path-to-project> -quit -batchmode -executeMethod StartCommandLineBuild
96
100
```
101
+
102
+
#### Sign a Unity Package
103
+
104
+
> [!NOTE]
105
+
> The `--output` option is optional. If not specified, the package contents will be updated in place with the signed `.attestation.p7m` file. Otherwise a signed `.tgz` file will be created in the specified output directory.
0 commit comments