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

Commit efb217d

Browse files
committed
Add action
1 parent 38d1fd6 commit efb217d

40 files changed

+2440
-0
lines changed

action.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Activate Unity
2+
description: Activate Unity license and return it after job finish
3+
inputs:
4+
unity-path:
5+
description: Path to Unity executable. UNITY_PATH env will be used if not provided
6+
required: false
7+
unity-username:
8+
description: Unity activation username. Manual license will be used if not provided
9+
required: false
10+
unity-password:
11+
description: Unity activation password. Manual license will be used if not provided
12+
required: false
13+
unity-serial:
14+
description: Unity activation serial key. Manual license will be used if not provided
15+
required: false
16+
unity-manual-license:
17+
description: Unity manual license content
18+
required: false
19+
runs:
20+
using: node12
21+
main: src/activate-license.js
22+
post: src/return-license.js
23+
branding:
24+
icon: unlock
25+
color: gray-dark

node_modules/@actions/core/LICENSE.md

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/README.md

Lines changed: 147 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.d.ts

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.js

Lines changed: 79 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)