Skip to content

Commit

Permalink
Attempt to fix Windows build error
Browse files Browse the repository at this point in the history
(cherry picked from commit c399ba1)
  • Loading branch information
dae committed Oct 15, 2023
1 parent 62533db commit 19ad23c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-quick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,16 @@ jobs:

# The action puts a relative path on the PATH 🙄
- name: Make path absolute
if: matrix.os != 'windows-latest'
run: echo $(pwd)/ninja_bin >> $GITHUB_PATH

- name: Make path absolute
if: matrix.os == 'windows-latest'
run: |
$CurrentPath = (Get-Location).Path
$NewPath = "${CurrentPath}/ninja_bin"
Add-Content -Path $env:GITHUB_PATH -Value $NewPath
- name: Configure JDK
uses: actions/setup-java@v3
with:
Expand Down

0 comments on commit 19ad23c

Please sign in to comment.