butler-publish-itchio-action/Dockerfile
Oskar van Velden 429eea9b6d
FIx issue with old Butler download
There was an old reference to the Butler download.
Also fixed
2020-06-11 00:46:26 +02:00

18 lines
534 B
Docker

FROM centos:8
LABEL "com.github.actions.name"="Butler Push"
LABEL "com.github.actions.description"="Publishes releases to Itch.io using Butler"
LABEL "com.github.actions.icon"="upload"
LABEL "com.github.actions.color"="white"
# Install Butler
RUN curl -L -o butler.zip https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default \
&& unzip butler.zip \
&& cp butler /usr/bin \
&& chmod +x /usr/bin/butler
# Run butler push
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]