Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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:
Expand Down
Loading