ci: retry transient Windows installer packaging
Windows CI / verify (push) Successful in 3m48s

Extend the bounded Electron download retry to the installer build, then bump the release contracts to 1.0.13.
This commit is contained in:
Sucukdeluxe
2026-08-12 21:55:07 +02:00
parent 1a1c37720e
commit 17b982016f
10 changed files with 29 additions and 13 deletions
+6 -1
View File
@@ -58,7 +58,12 @@ jobs:
run: npm run test:packaged-launch
timeout-minutes: 10
- name: Build installer
run: npm run dist:ci
run: |
npm run dist:ci
if ($LASTEXITCODE -ne 0) {
npm run dist:ci
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
}
timeout-minutes: 10
- name: Installer smoke
run: npm run test:installer