images/actions/godot/Dockerfile aktualisiert
Some checks failed
Build Runner Godot / build_godot (latest) (push) Failing after 2m34s
Build Runner Godot / build_godot (4.2.2) (push) Failing after 2m38s
Build Runner Lua / build_lua (5.1) (push) Successful in 2m37s
Build Runner Lua / build_lua (5.3) (push) Successful in 2m46s
Build Runner Lua / build_lua (5.2) (push) Successful in 2m49s
Build Runner csharp / build_csharp (6) (push) Successful in 3m5s
Build Runner csharp / build_csharp (7) (push) Successful in 3m12s
Build Runner Lua / build_lua (5.4) (push) Successful in 3m1s
Build Runner Php / build_php (8.2) (push) Successful in 2m59s
Build Runner Java / build_java (17) (push) Successful in 3m16s
Build Runner Base / build_act (push) Successful in 3m26s
Build Runner Php / build_php (8.3) (push) Successful in 3m17s
Build Runner Php / build_php (8.1) (push) Successful in 3m22s
Build Runner Java / build_java (8) (push) Successful in 3m32s
Build Runner Java / build_java (21) (push) Successful in 3m37s

This commit is contained in:
Snoweuph 2024-05-09 22:04:39 +00:00
parent 1b3c30f05c
commit 7eafebf2c2

View file

@ -7,14 +7,14 @@ RUN if [[ "$PACKAGE_VERSION" != "latest" ]] ; then \
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
| head -n 1 \
) -O Godot.zip \
else \
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
| cut -d '"' -f 4 \
) -O Godot.zip \
fi \
&& unzip Godot.zip -d /usr/local/bin \
&& rm Godot.zip \