diff --git a/.github/workflows/build_qt6.yml b/.github/workflows/build_qt6.yml index d525aac720..c350049c49 100644 --- a/.github/workflows/build_qt6.yml +++ b/.github/workflows/build_qt6.yml @@ -88,11 +88,20 @@ jobs: path: avogadrolibs - name: Install Qt + if: runner.os != 'Windows' uses: jurplel/install-qt-action@v3 with: version: ${{ env.QT_VERSION }} aqtversion: '==3.1.*' - modules: 'qt5compat' + + - name: Install Qt (Windows) + if: runner.os == 'Windows' + uses: jurplel/install-qt-action@v3 + with: + version: ${{ env.QT_VERSION }} + aqtversion: '==3.1.*' + host: windows + arch: win64_msvc2022_64 - name: Configure MSVC Command Prompt if: runner.os == 'Windows'