Move builder implementation to builder folder

This commit is contained in:
Webber
2020-01-07 21:56:16 +01:00
committed by Webber Takken
parent 2166833f11
commit 81a7bbbe88
7 changed files with 0 additions and 0 deletions

16
builder/Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
ARG IMAGE
FROM $IMAGE
LABEL "com.github.actions.name"="Unity - Builder"
LABEL "com.github.actions.description"="Build Unity projects for different platforms."
LABEL "com.github.actions.icon"="box"
LABEL "com.github.actions.color"="gray-dark"
LABEL "repository"="http://github.com/webbertakken/unity-actions"
LABEL "homepage"="http://github.com/webbertakken/unity-actions"
LABEL "maintainer"="Webber Takken <webber@takken.io>"
ADD default-build-script /UnityBuilderAction
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]