Skip to content

Commit

Permalink
Fix download path of editor executable
Browse files Browse the repository at this point in the history
  • Loading branch information
chippmann committed Oct 10, 2024
1 parent 733a6a4 commit 47b9242
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 47b9242

Please sign in to comment.