From 542a9945386520e252b710ba018ae888581fb7f1 Mon Sep 17 00:00:00 2001 From: ultrablob Date: Mon, 3 Feb 2025 20:50:26 -0500 Subject: [PATCH] bruh --- .github/workflows/build.yml | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 18830ed..cff7e36 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,10 +32,24 @@ jobs: - uses: actions/checkout@v2 name: Checkout Files - - uses: https://github.com/chickensoft-games/setup-godot@v2 - name: Setup Godot - with: - version: 4.3.0-stable + - name: Download Godot + run: | + echo "https://github.com/godotengine/godot-builds/releases/download/$GODOT_VERSION-stable/Godot_v$GODOT_VERSION-stable_linux.arm64.zip" + curl -L -o godot.zip https://github.com/godotengine/godot-builds/releases/download/$GODOT_VERSION-stable/Godot_v$GODOT_VERSION-stable_linux.arm64.zip + unzip godot.zip + mv Godot_v$GODOT_VERSION-stable_linux.arm64 godot + chmod +x godot + + - name: Download Godot Export Templates + run: | + echo "https://github.com/godotengine/godot-builds/releases/download/$GODOT_VERSION-stable/Godot_v$GODOT_VERSION-stable_export_templates.tpz" + curl -L -o export_templates.zip https://github.com/godotengine/godot-builds/releases/download/$GODOT_VERSION-stable/Godot_v$GODOT_VERSION-stable_export_templates.tpz + unzip export_templates.zip + + - name: Install Export Templates + run: | + mkdir -p ~/.local/share/godot/export_templates/$GODOT_VERSION.stable + mv ./templates/* ~/.local/share/godot/export_templates/$GODOT_VERSION.stable - name: Build Game run: |