From 47b924274938c1e2fde31662dd808faf4b63b10c Mon Sep 17 00:00:00 2001 From: chippmann Date: Thu, 10 Oct 2024 10:07:08 +0200 Subject: [PATCH] Fix download path of editor executable --- .github/workflows/test_linux.yml | 4 ++-- .github/workflows/test_macos.yml | 4 ++-- .github/workflows/test_windows.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test_linux.yml b/.github/workflows/test_linux.yml index 9a7139fa61..5bc9b73906 100644 --- a/.github/workflows/test_linux.yml +++ b/.github/workflows/test_linux.yml @@ -60,13 +60,13 @@ jobs: uses: actions/download-artifact@v4 with: name: editor_${{ matrix.target }}_linux_x86_64 - path: './bin' + path: './harness/tests/bin' - name: Download godot-bootstrap ${{ matrix.bootstrap-target }} uses: actions/download-artifact@v4 with: name: jvm_godot-bootstrap_${{ matrix.bootstrap-target }} - path: './bin' + path: './harness/tests/bin' - name: Build tests project run: | diff --git a/.github/workflows/test_macos.yml b/.github/workflows/test_macos.yml index f57967247c..c776e463cc 100644 --- a/.github/workflows/test_macos.yml +++ b/.github/workflows/test_macos.yml @@ -60,13 +60,13 @@ jobs: uses: actions/download-artifact@v4 with: name: editor_${{ matrix.target }}_macos_universal - path: './bin' + path: './harness/tests/bin' - name: Download godot-bootstrap ${{ matrix.bootstrap-target }} uses: actions/download-artifact@v4 with: name: jvm_godot-bootstrap_${{ matrix.bootstrap-target }} - path: './bin' + path: './harness/tests/bin' - name: Build tests project run: | diff --git a/.github/workflows/test_windows.yml b/.github/workflows/test_windows.yml index 854c7fb95d..2802fb1f73 100644 --- a/.github/workflows/test_windows.yml +++ b/.github/workflows/test_windows.yml @@ -60,13 +60,13 @@ jobs: uses: actions/download-artifact@v4 with: name: editor_${{ matrix.target }}_windows_x86_64 - path: './bin' + path: './harness/tests/bin' - name: Download godot-bootstrap ${{ matrix.bootstrap-target }} uses: actions/download-artifact@v4 with: name: jvm_godot-bootstrap_${{ matrix.bootstrap-target }} - path: './bin' + path: './harness/tests/bin' - name: Build tests project run: |