Skip to content
This repository was archived by the owner on Jan 15, 2026. It is now read-only.

Commit 6885849

Browse files
committed
Add readme
1 parent efb217d commit 6885849

File tree

2 files changed

+48
-5
lines changed

2 files changed

+48
-5
lines changed

README.md

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,44 @@
1-
# activate-unity
1+
# activate-unity
2+
3+
GitHub Action to activate Unity license. License will be automatically returned when the job finishes.
4+
5+
Works on Linux, macOS and Windows.
6+
7+
## Inputs
8+
9+
### `unity-path`
10+
11+
Path to Unity executable. `UNITY_PATH` env will be used if not provided.
12+
13+
### `unity-username`
14+
15+
Unity activation username.
16+
17+
### `unity-password`
18+
19+
Unity activation password.
20+
21+
### `unity-serial`
22+
23+
Unity activation serial key.
24+
25+
### `unity-manual-license`
26+
27+
Unity license content for manual activation.
28+
29+
## Example usage
30+
31+
```yaml
32+
- name: Checkout project
33+
uses: actions/checkout@v2
34+
35+
- name: Setup Unity
36+
uses: kuler90/setup-unity@v1
37+
38+
- name: Activate Unity
39+
uses: kuler90/activate-unity@v1
40+
with:
41+
unity-username: ${{ secrets.UNITY_USERNAME }}
42+
unity-password: ${{ secrets.UNITY_PASSWORD }}
43+
unity-serial: ${{ secrets.UNITY_SERIAL }}
44+
```

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ inputs:
55
description: Path to Unity executable. UNITY_PATH env will be used if not provided
66
required: false
77
unity-username:
8-
description: Unity activation username. Manual license will be used if not provided
8+
description: Unity activation username
99
required: false
1010
unity-password:
11-
description: Unity activation password. Manual license will be used if not provided
11+
description: Unity activation password
1212
required: false
1313
unity-serial:
14-
description: Unity activation serial key. Manual license will be used if not provided
14+
description: Unity activation serial key
1515
required: false
1616
unity-manual-license:
17-
description: Unity manual license content
17+
description: Unity license content for manual activation
1818
required: false
1919
runs:
2020
using: node12

0 commit comments

Comments
 (0)