Skip to content

Commit e67c408

Browse files
authored
Build: dont fail fast (#633)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced custom icons for macOS and Windows builds to enhance visual branding. - **Bug Fixes** - Updated workflow configurations to allow all jobs in matrix builds to continue running despite failures. - **Chores** - Updated dependency versions in `package.json` for more flexible management. - Restructured asset directory for logo in the application. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 54e541a commit e67c408

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
strategy:
10-
fail-fast: true
10+
fail-fast: false
1111
matrix:
1212
os:
1313
- macos-13

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
contents: write # Allows this job to create releases
6969

7070
strategy:
71-
fail-fast: true
71+
fail-fast: false
7272
matrix:
7373
os:
7474
- macos-13

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"build:main": "cd ./packages/main && vite build",
1616
"build:preload": "cd ./packages/preload && vite build",
1717
"build:renderer": "cd ./packages/renderer && vite build",
18-
"compile": "cross-env MODE=production yarn build && electron-builder build --config electron-builder.yml --dir --config.asar=false",
18+
"compile": "cross-env MODE=production yarn build && electron-builder build --config electron-builder.yml --dir",
1919
"test": "yarn test:main && yarn test:preload && yarn test:renderer && yarn test:e2e",
2020
"test:e2e": "yarn build && vitest run",
2121
"test:main": "vitest run -r packages/main --passWithNoTests",

0 commit comments

Comments
 (0)