Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge 4.2.2 #2

Merged
merged 2 commits into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ RUN apt update && apt install -y wine unzip wget
RUN mkdir -p /godot/releases && mkdir -p /godot/templates
WORKDIR /godot

RUN wget --no-check-certificate -q https://github.com/godotengine/godot/releases/download/4.2.1-stable/Godot_v4.2.2-stable_linux.x86_64.zip
RUN wget --no-check-certificate -q https://github.com/godotengine/godot/releases/download/4.2.1-stable/Godot_v4.2.2-stable_export_templates.tpz
RUN wget --no-check-certificate -q https://github.com/godotengine/godot/releases/download/4.2.2-stable/Godot_v4.2.2-stable_linux.x86_64.zip
RUN wget --no-check-certificate -q https://github.com/godotengine/godot/releases/download/4.2.2-stable/Godot_v4.2.2-stable_export_templates.tpz

RUN unzip Godot_v4.2.2-stable_linux.x86_64.zip
RUN unzip Godot_v4.2.2-stable_export_templates.tpz -d /godot
Expand Down
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

mkdir -p /github/home/.local/share/godot/export_templates/4.2.1.stable/
cp -r /godot/templates/* /github/home/.local/share/godot/export_templates/4.2.1.stable/
mkdir -p /github/home/.local/share/godot/export_templates/4.2.2.stable/
cp -r /godot/templates/* /github/home/.local/share/godot/export_templates/4.2.2.stable/

#echo "/godot/Godot_v4.2.1-stable_linux.x86_64 --headless --path /github/workspace/$3 $2 $1"

Expand Down