From a13bb6dc2f61d5df0d0cb5c15509c9a08875010c Mon Sep 17 00:00:00 2001 From: Aliaksandr Adziareika <8034372+alexadereyko@users.noreply.github.com> Date: Wed, 27 May 2026 09:44:59 +0200 Subject: [PATCH] Fix runner label windows-2022 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 689f559..41fb21b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: include: - os: ubuntu-latest generator: Ninja - - os: windows-latest + - os: windows-2022 generator: "Visual Studio 17 2022" runs-on: ${{ matrix.os }} @@ -44,7 +44,7 @@ jobs: include: - os: ubuntu-latest generator: Ninja - - os: windows-latest + - os: windows-2022 generator: "Visual Studio 17 2022" runs-on: ${{ matrix.os }} @@ -85,7 +85,7 @@ jobs: cmake --install build/output --config Debug - name: Add DLL path (Windows only) - if: matrix.os == 'windows-latest' + if: matrix.os == 'windows-2022' run: echo "${{ env.INSTALL_PREFIX }}/bin" >> $env:GITHUB_PATH - name: Configure project with CMake