From 8df9753aa4c6188f32ef8ffaf73977b934a9fc4b Mon Sep 17 00:00:00 2001 From: ultrablob Date: Mon, 3 Feb 2025 21:17:43 -0500 Subject: [PATCH] change godot build location --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de391d0..71839a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,8 +37,8 @@ jobs: 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 + mv Godot_v$GODOT_VERSION-stable_linux.arm64 /usr/bin/godot + chmod +x /usr/bin/godot - name: Download Godot Export Templates run: | @@ -57,7 +57,7 @@ jobs: mkdir -v -p build/web EXPORT_DIR="$(readlink -f build)" cd $PROJECT_PATH - godot --headless --verbose --export-release "Web" "$EXPORT_DIR/web/index.html" + /usr/bin/godot --headless --verbose --export-release "Web" "$EXPORT_DIR/web/index.html" - name: Upload Build uses: actions/upload-artifact@v4