We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08cb687 commit 30e2987Copy full SHA for 30e2987
1 file changed
.github/workflows/deploy-windows.yml
@@ -7,6 +7,9 @@ on:
7
branches:
8
- "**"
9
10
+env:
11
+ Qt_ROOT: ../Qt/6.8.2/msvc2022_64/
12
+
13
jobs:
14
build:
15
runs-on: windows-latest
@@ -39,12 +42,12 @@ jobs:
39
42
- name: CMake
40
43
shell: bash
41
44
run: |
- cmake -B build -DBUILD_TESTING=OFF -DQt6_DIR=../Qt/6.8.2/msvc2022_64/lib/cmake/Qt6 -DCMAKE_PREFIX_PATH=../or-tools_x64_VisualStudio2022_cpp_v9.10.4067
45
+ cmake -B build -DBUILD_TESTING=OFF -DQt6_DIR=${Qt_ROOT}/lib/cmake/Qt6 -DCMAKE_PREFIX_PATH=../or-tools_x64_VisualStudio2022_cpp_v9.10.4067
46
- name: Build
47
run: cmake --build build --config Release
48
- name: Deploy Qt
49
- run: ci/deploywindows.sh
50
+ run: PATH=$PATH:${Qt_ROOT}/bin ci/deploywindows.sh
51
- name: Create Release
52
uses: softprops/action-gh-release@v1
53
with:
0 commit comments