Skip to content

Commit 582e39e

Browse files
committed
Another attempt at fixing it.
1 parent 6d771b4 commit 582e39e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ jobs:
1010
build:
1111
runs-on: windows-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
15-
- name: Add msbuild to PATH
16-
uses: microsoft/setup-msbuild@v1.1
13+
- uses: actions/checkout@v3
1714

1815
- name: Install Qt
1916
uses: jurplel/install-qt-action@v4
@@ -27,11 +24,14 @@ jobs:
2724
setup-python: 'true'
2825
tools-only: 'false'
2926

27+
- name: Add msbuild to PATH
28+
uses: microsoft/setup-msbuild@v1.1
29+
3030
- name: Set QTDIR and QtToolsPath
3131
shell: bash
3232
run: |
33-
echo "QTDIR=$QT_ROOT_DIR" >> "$GITHUB_ENV"
34-
echo "QtToolsPath=$QT_ROOT_DIR/bin" >> "$GITHUB_ENV"
33+
echo "QTDIR=${{ runner.temp }}/Qt/${{ env.QT_VERSION }}/msvc2019_64" >> $GITHUB_ENV
34+
echo "QtToolsPath=${{ runner.temp }}/Qt/${{ env.QT_VERSION }}/msvc2019_64/bin" >> $GITHUB_ENV
3535
3636
- name: Build the lib in release mode
3737
shell: pwsh

0 commit comments

Comments
 (0)