From 3871d599d43e071d1ea86b21876cf45fcc30a84a Mon Sep 17 00:00:00 2001 From: Samuel K Date: Sun, 17 May 2026 13:06:55 -0500 Subject: [PATCH] fix(ci): stage all platform binaries for provider gen, update VS version - Copy all platform binaries to desktop/resources/bin/ so the generate pro provider step can compute checksums for all platforms - Update GYP_MSVS_VERSION from 2022 to 2025 for current windows-latest runners which ship VS 18 (2025) --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ffadef17e..aaa92695d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -127,6 +127,7 @@ jobs: # Also stage binaries for dist/ upload and provider generation mkdir -p dist/ find "$TEMP_DIR/devsy-bin/" -type f -name "devsy-*" -exec cp {} dist/ \; + find "$TEMP_DIR/devsy-bin/" -type f -name "devsy-*" -exec cp {} desktop/resources/bin/ \; - name: setup CLI binary (windows) if: runner.os == 'Windows' @@ -145,10 +146,7 @@ jobs: - name: configure Windows build tools if: runner.os == 'Windows' shell: pwsh - run: | - echo "GYP_MSVS_VERSION=2022" >> $env:GITHUB_ENV - $vsPath = & "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" -latest -property installationPath - echo "GYP_MSVS_OVERRIDE_PATH=$vsPath" >> $env:GITHUB_ENV + run: echo "GYP_MSVS_VERSION=2025" >> $env:GITHUB_ENV - uses: actions/setup-python@v6 with: