diff --git a/Dockerfile b/Dockerfile index d8868fb..3fd30d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,13 +5,12 @@ LABEL "com.github.actions.description"="Publishes releases to Itch.io using Butl LABEL "com.github.actions.icon"="upload" LABEL "com.github.actions.color"="white" -RUN yum update -y - # Install Butler ADD https://dl.itch.ovh/butler/linux-amd64/head/butler /usr/bin/ RUN chmod +x /usr/bin/butler +RUN butler upgrade --assume-yes # Run butler push ADD entrypoint.sh /entrypoint.sh RUN chmod +x entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["/entrypoint.sh"] diff --git a/entrypoint.sh b/entrypoint.sh index ad63c88..f9e8461 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,8 +4,6 @@ set -e mkdir -p ~/.config/itch echo $BUTLER_CREDENTIALS > ~/.config/itch/butler_creds -butler upgrade --assume-yes - versionArgument="" if [ "$VERSION" != "" ]