We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53fdf15 + b1f7d40 commit 49e6220Copy full SHA for 49e6220
Dockerfile
@@ -5,12 +5,15 @@ LABEL "com.github.actions.description"="Publishes releases to Itch.io using Butl
5
LABEL "com.github.actions.icon"="upload"
6
LABEL "com.github.actions.color"="white"
7
8
+RUN dnf install unzip -y
9
+
10
# Install Butler
-ADD https://dl.itch.ovh/butler/linux-amd64/head/butler /usr/bin/
-RUN chmod +x /usr/bin/butler
11
-RUN butler upgrade --assume-yes
+RUN curl -L -o butler.zip https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default \
12
+ && unzip butler.zip \
13
+ && cp butler /usr/bin \
14
+ && chmod +x /usr/bin/butler
15
16
# Run butler push
-ADD entrypoint.sh /entrypoint.sh
17
+COPY entrypoint.sh /entrypoint.sh
18
RUN chmod +x entrypoint.sh
19
ENTRYPOINT ["/entrypoint.sh"]
0 commit comments