From c728d8175aa43cd32de866f5125ada9618042929 Mon Sep 17 00:00:00 2001 From: Aliaksandr Adziareika <8034372+alexadereyko@users.noreply.github.com> Date: Wed, 27 May 2026 09:23:12 +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 5a458a1..964de2a 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 Release - 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