From 61e74a3f3c69a6fd9be70cd081c6f22120361cec Mon Sep 17 00:00:00 2001 From: MichaelXt Date: Wed, 5 Feb 2025 15:28:45 -0800 Subject: [PATCH] f --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d27b01d8..5290b665 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,8 +38,9 @@ jobs: if: matrix.os == 'windows-latest' run: | Invoke-WebRequest -Uri "https://github.com/godotengine/godot/releases/download/4.3-stable/Godot_v4.3-stable_win64.exe.zip" -OutFile "Godot.zip" - Expand-Archive -Path "Godot.zip" -DestinationPath "C:\Godot" - echo "C:\Godot" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + Expand-Archive -Path "Godot.zip" -DestinationPath "C:\Godot43" + $env:Path+=";C:\Godot43" + "C:\Godot\Godot_v4.3-stable_win64.exe %*" | Out-File -Encoding ascii -FilePath "C:\Godot43\godot.cmd" - name: Install dependencies