From 995cba88ff0cf3be501a2c2aeda7a4a04889b405 Mon Sep 17 00:00:00 2001 From: deepend Date: Tue, 3 Feb 2026 11:39:58 -0700 Subject: [PATCH] Updated the Windows CI gvsbuild invocation to use the named Visual Studio version vs2022 instead of the numeric value, matching current gvsbuild options. --- .github/workflows/windows-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows-build.yml b/.github/workflows/windows-build.yml index 2523f9d3..bda06853 100644 --- a/.github/workflows/windows-build.yml +++ b/.github/workflows/windows-build.yml @@ -76,7 +76,7 @@ jobs: python -m pip install C:\gtk-build\github\gvsbuild $gvsPlatform = if ("${{ matrix.platform }}" -eq "win32") { "x86" } else { "x64" } - gvsbuild build --vs-ver 16 --configuration release --platform $gvsPlatform gtk3 + gvsbuild build --vs-ver vs2022 --configuration release --platform $gvsPlatform gtk3 if ($gvsPlatform -eq "x86") { $gtkRoot = "C:\gtk-build\gtk"