Skip to content

Commit

Permalink
Correct env syntax for Windows cmd script
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Apr 14, 2023
1 parent 41e72ad commit 97716d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ jobs:
uses: ilammy/msvc-dev-cmd@v1
- name: Build
run: |
qmake -o "$RUNNER_TEMP" -r -Wall -Wlogic -Wparser CONFIG+=release "$GITHUB_WORKSPACE"
cd "$RUNNER_TEMP" && nmake.exe all
qmake -o "%RUNNER_TEMP%" -r -Wall -Wlogic -Wparser CONFIG+=release "%GITHUB_WORKSPACE%"
cd "%RUNNER_TEMP%" && nmake.exe all
- name: Test
run: nmake.exe check
working-directory: ${{ runner.temp }}
Expand Down

0 comments on commit 97716d4

Please sign in to comment.