From e6631ca92d1f72fe3a6b0974e0191dd775b4e26c Mon Sep 17 00:00:00 2001 From: Paul Colby Date: Tue, 2 Jan 2024 20:57:24 +1100 Subject: [PATCH] Correct Workflow syntax --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3010acf04..b04756f17 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -338,7 +338,7 @@ jobs: arch: ${{ matrix.qtArch }} # Use Qt's shipped MinGW for Qt 6.6+ for now, as the runner's MinGW version crashes with Qt 6.6 and 6.7. # \todo Remove this if/when the runner's MinGW is updated to fix the incompatibility. - tools: ${{ (startsWith(matrix.qt, '6.6') || startsWith(matrix.qt, '6.7') && startsWith(matrix.generator, 'MinGW') && 'tools_mingw90' || '' }} + tools: ${{ (startsWith(matrix.qt, '6.6') || startsWith(matrix.qt, '6.7')) && startsWith(matrix.generator, 'MinGW') && 'tools_mingw90' || '' }} #add-tools-to-path: true ///< \toto Use once released by install-qt-action. - name: Configure cross-compilation if: matrix.arch == 'arm64'