From ab6dd20785f8b78a94d689bcbef40cc2f995fed9 Mon Sep 17 00:00:00 2001 From: Remisa Yousefvand Date: Mon, 7 Oct 2024 22:05:29 +0330 Subject: [PATCH] fix github action #2 --- .github/workflows/cmake-multi-platform.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 42a1467..e045efa 100755 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -36,7 +36,7 @@ jobs: if: matrix.os == 'ubuntu-latest' run: | sudo apt-get update - sudo apt-get install -y ninja-build qt6-base-dev qt6-base-dev-tools qt6-qmake + sudo apt-get install -y ninja-build qtbase6-dev qt6-base-dev-tools echo "CMAKE_PREFIX_PATH=/usr/lib/x86_64-linux-gnu/cmake/Qt6" >> $GITHUB_ENV # Install dependencies for macOS @@ -56,7 +56,7 @@ jobs: if: matrix.os == 'windows-latest' run: | vswhere -products * -latest -property installationPath - export PATH="$PATH:/c/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/MSBuild/Current/Bin" + $env:PATH += ";C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin" # Set reusable strings - name: Set reusable strings