diff options
Diffstat (limited to '.github/workflows/release-windows.yml')
| -rw-r--r-- | .github/workflows/release-windows.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/release-windows.yml b/.github/workflows/release-windows.yml index 3c0ee00..02d3071 100644 --- a/.github/workflows/release-windows.yml +++ b/.github/workflows/release-windows.yml @@ -14,7 +14,14 @@ permissions: jobs: windows: - runs-on: windows-latest + # windows-latest ships Visual Studio 2026 since 2026-06, which node-gyp + # cannot detect yet (nodejs/node-gyp#3250) — pin to the VS2022 image. + runs-on: windows-2022 + # Native rebuild + packaging normally takes <10 min — fail fast on hangs + timeout-minutes: 25 + env: + DEBUG: electron-builder + npm_config_loglevel: info steps: - uses: actions/checkout@v4 |
