specify no publishing for build test
This commit is contained in:
parent
d2f201eae9
commit
93752ad24f
2 changed files with 3 additions and 2 deletions
4
.github/workflows/build-test.yml
vendored
4
.github/workflows/build-test.yml
vendored
|
|
@ -26,7 +26,7 @@ jobs:
|
|||
- name: Build Electron app
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||
run: npm run build
|
||||
run: npm run build-nopublish
|
||||
|
||||
build-windows:
|
||||
runs-on: "windows-latest"
|
||||
|
|
@ -46,7 +46,7 @@ jobs:
|
|||
- name: Build Electron app
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||
run: npm run build
|
||||
run: npm run build-nopublish
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -78,6 +78,7 @@
|
|||
"start-dbg": "npm run prebuild && electron . --debugg",
|
||||
"start-ddb": "npm run prebuild && electron . --devel --debugg",
|
||||
"build": "npm run prebuild && electron-builder",
|
||||
"build-nopublish": "npm run prebuild && electron-builder --publish never",
|
||||
"build-debug": "npm run prebuild && DEBUG=electron-builder electron-builder",
|
||||
"build-linux": "npm run build -- --linux --x64",
|
||||
"build-linux-arm": "npm run build -- --linux --arm64",
|
||||
|
|
|
|||
Loading…
Reference in a new issue