diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 9594b5b..0ba51cc 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -57,7 +57,7 @@ jobs: - base strategy: matrix: - language: ["php", "lua", "java", "csharp", "redot"] + #language: ["php", "lua", "java", "csharp", "redot"] include: - language: php version: 8.2 diff --git a/images/actions/godot/Dockerfile b/images/actions/godot/Dockerfile deleted file mode 100644 index 77c9f1a..0000000 --- a/images/actions/godot/Dockerfile +++ /dev/null @@ -1,29 +0,0 @@ -FROM git.euph.dev/actions/runner-csharp-7:latest - -ARG PACKAGE_VERSION - -RUN sudo apk add --no-cache \ - scons \ - pkgconf \ - gcc \ - g++ \ - libx11-dev \ - libxcursor-dev \ - libxinerama-dev \ - libxi-dev \ - libxrandr-dev \ - mesa-dev \ - eudev-dev \ - alsa-lib-dev \ - pulseaudio-dev - -RUN wget $( \ - curl -s https://api.github.com/repos/godotengine/godot/releases/tags/$PACKAGE_VERSION-stable \ - | grep "browser_download_url.*Godot_v.*-stable_mono_linux_x86_64.zip" \ - | cut -d '"' -f 4 - \ - | head -n 1 \ - ) -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 \ - && rm Godot.zip \ No newline at end of file diff --git a/images/actions/redot/Dockerfile b/images/actions/redot/Dockerfile index e6822ca..682fd8c 100644 --- a/images/actions/redot/Dockerfile +++ b/images/actions/redot/Dockerfile @@ -3,7 +3,7 @@ FROM git.euph.dev/actions/runner-basic:latest ARG PACKAGE_VERSION RUN wget $( \ - curl -s https://api.github.com/repos/Redot-Engine/redot-engine/releases/tags/$PACKAGE_VERSION-stable \ + curl -s https://api.github.com/repos/Redot-Engine/redot-engine/releases/tags/redot-$PACKAGE_VERSION-stable \ | grep "browser_download_url.*Redot_v.*-stable_linux_x86_64.zip" \ | cut -d '"' -f 4 - \ | head -n 1 \