diff --git a/images/actions/godot/Dockerfile b/images/actions/godot/Dockerfile index 5539095..fe73ffe 100644 --- a/images/actions/godot/Dockerfile +++ b/images/actions/godot/Dockerfile @@ -2,11 +2,7 @@ FROM git.euph.dev/actions/runner-csharp-7:latest ARG PACKAGE_VERSION -RUN wget $( - curl -s https://api.github.com/repos/godotengine/godot/releases/latest \ - | grep "browser_download_url.*Godot_v.*-stable_mono_linux_x86_64.zip" \ - | cut -d '"' -f 4 \ - ) -O Godot.zip \ +RUN wget --quite https://downloads.tuxfamily.org/godotengine/$PACKAGE_VERSION/mono/Godot_v$PACKAGE_VERSION-stable_linux.x86_64.zip -O Godot.zip \ && sudo unzip Godot.zip \ && sudo mv ./Godot_v*-stable_mono_linux_x86_64/Godot_v*-stable_mono_linux.x86_64 /usr/local/bin/godot \ && sudo mv ./Godot_v*-stable_mono_linux_x86_64/GodotSharp /usr/local/bin/GodotSharp \