File tree Expand file tree Collapse file tree 5 files changed +45
-1
lines changed Expand file tree Collapse file tree 5 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 1+ # Order ignore, include
2+ *
3+
4+ # Files required for the action
5+ ! entrypoint.sh
6+ ! action.yml
Original file line number Diff line number Diff line change 1+ FROM gableroux/unity3d:2019.2.11f1
2+
3+ LABEL "com.github.actions.name" ="Unity - Return License"
4+ LABEL "com.github.actions.description" ="Return a Unity Pro license and free up a spot towards the maximum number of active licenses."
5+ LABEL "com.github.actions.icon" ="box"
6+ LABEL "com.github.actions.color" ="gray-dark"
7+
8+ LABEL "repository" ="http://github.com/webbertakken/unity-actions"
9+ LABEL "homepage" ="http://github.com/webbertakken/unity-actions"
10+ LABEL "maintainer" ="Webber Takken <webber@takken.io>"
11+
12+ ADD entrypoint.sh /entrypoint.sh
13+ RUN chmod +x /entrypoint.sh
14+ ENTRYPOINT ["/entrypoint.sh" ]
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Part of the [Unity Actions](https://github.com/webbertakken/unity-actions) colle
99
1010---
1111
12- Use this action to return your Unity Pro license and free up a spot towards the
12+ Use this action to return a Unity Pro license and free up a spot towards the
1313maximum number of active licenses.
1414
1515### Documentation
Original file line number Diff line number Diff line change 1+ name : ' Unity - Return License'
2+ author : Webber Takken <webber@takken.io>
3+ description : ' Return a Unity Pro license and free up a spot towards the maximum number of active licenses.'
4+ inputs : {}
5+ outputs : {}
6+ runs :
7+ using : ' docker'
8+ image : ' Dockerfile'
9+ branding :
10+ icon : ' box'
11+ color : ' gray-dark'
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ #
4+ # Return a Unity Pro license and free up a spot towards the maximum number of active licenses.
5+ #
6+ xvfb-run --auto-servernum --server-args=' -screen 0 640x480x24' \
7+ /opt/Unity/Editor/Unity \
8+ -batchmode \
9+ -nographics \
10+ -logFile /dev/stdout \
11+ -quit \
12+ -returnlicense
13+
You can’t perform that action at this time.
0 commit comments