fix: keep CI packaging local
CI / verify (push) Waiting to run

Pass --publish never to the regular Windows build so electron-builder cannot infer a release upload from the CI environment.
This commit is contained in:
Sucukdeluxe
2026-08-11 22:42:36 +02:00
parent 2ba0106ef0
commit 88aa17e03a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
"test:backup-api": "npm --prefix services/backup-api test", "test:backup-api": "npm --prefix services/backup-api test",
"verify": "npm run lint && npm test && npm run test:backup-api && npm audit --omit=dev", "verify": "npm run lint && npm test && npm run test:backup-api && npm audit --omit=dev",
"lint": "eslint .", "lint": "eslint .",
"dist": "electron-builder --win", "dist": "electron-builder --publish never --win",
"release:win": "electron-builder --publish never --win nsis portable" "release:win": "electron-builder --publish never --win nsis portable"
}, },
"dependencies": { "dependencies": {
+1 -1
View File
@@ -165,7 +165,7 @@ const expectedScripts = {
'test:backup-api': 'npm --prefix services/backup-api test', 'test:backup-api': 'npm --prefix services/backup-api test',
verify: 'npm run lint && npm test && npm run test:backup-api && npm audit --omit=dev', verify: 'npm run lint && npm test && npm run test:backup-api && npm audit --omit=dev',
lint: 'eslint .', lint: 'eslint .',
dist: 'electron-builder --win', dist: 'electron-builder --publish never --win',
'release:win': 'electron-builder --publish never --win nsis portable' 'release:win': 'electron-builder --publish never --win nsis portable'
}; };
const expectedBuildFiles = [ const expectedBuildFiles = [