mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00
Cleanup
This commit is contained in:
parent
ed7918e4f4
commit
7c90cddd43
@ -5,4 +5,3 @@
|
|||||||
!entrypoint.sh
|
!entrypoint.sh
|
||||||
!action.yml
|
!action.yml
|
||||||
!default-build-script
|
!default-build-script
|
||||||
!src
|
|
||||||
|
@ -12,7 +12,5 @@ LABEL "maintainer"="Webber Takken <webber@takken.io>"
|
|||||||
|
|
||||||
ADD default-build-script /UnityBuilderAction
|
ADD default-build-script /UnityBuilderAction
|
||||||
ADD entrypoint.sh /entrypoint.sh
|
ADD entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
RUN chmod +x /entrypoint.sh
|
RUN chmod +x /entrypoint.sh
|
||||||
|
|
||||||
ENTRYPOINT ["/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
|
26
action.yml
26
action.yml
@ -1,7 +1,31 @@
|
|||||||
name: 'Unity - Builder'
|
name: 'Unity - Builder'
|
||||||
author: Webber Takken <webber@takken.io>
|
author: Webber Takken <webber@takken.io>
|
||||||
description: 'Build Unity projects for different platforms.'
|
description: 'Build Unity projects for different platforms.'
|
||||||
inputs: {}
|
inputs:
|
||||||
|
unityVersion:
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
description: 'Version of unity to use for building the project.'
|
||||||
|
targetPlatform:
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
description: 'Platform that the build should target.'
|
||||||
|
projectPath:
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
description: 'Relative path to the project to be built.'
|
||||||
|
buildName:
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
description: 'Name of the build.'
|
||||||
|
buildsPath:
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
description: 'Path where the builds should be stored.'
|
||||||
|
buildMethod:
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
description: 'Path to a Namespace.Class.StaticMethod to run to perform the build.'
|
||||||
outputs:
|
outputs:
|
||||||
buildPath:
|
buildPath:
|
||||||
description: 'Path where the current platform has been built to.'
|
description: 'Path where the current platform has been built to.'
|
||||||
|
Loading…
Reference in New Issue
Block a user