Rename builder folder to action folder (unity actions convention)

This commit is contained in:
Webber
2020-02-01 20:21:22 +01:00
committed by Webber Takken
parent d8896dc4f5
commit f3a984165e
43 changed files with 27 additions and 23 deletions

18
action/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
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 steps /steps
RUN chmod -R +x /steps
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]