Skip to content

Commit

Permalink
CI: fix test build for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
todbot committed Jul 3, 2022
1 parent 44835a1 commit e3a7d28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Build all platforms
# continue-on-error: true
continue-on-error: true

on: [push, pull_request]

Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
run: |
npm install
npm run pack
ELECTRON_SKIP_NOTARIZATION=true npm run dist:draft
npm run dist:draft
- name: Check files
if: runner.os == 'Linux'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"webpack": "cross-env NODE_ENV=production webpack --mode production",
"pack": "npm run webpack",
"dist:test": "electron-builder --dir",
"dist:draft": "electron-builder --publish=never",
"dist:draft": "cross-env ELECTRON_SKIP_NOTARIZATION=true electron-builder --publish=never",
"dist": "electron-builder --publish=always",
"release": "electron-builder",
"dist:win32bit": "electron-builder --ia32 --win --publish=never",
Expand Down

0 comments on commit e3a7d28

Please sign in to comment.