Skip to content

Commit

Permalink
Build: dont fail fast (#633)
Browse files Browse the repository at this point in the history
<!-- 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 -->
  • Loading branch information
baruchiro authored Dec 25, 2024
1 parent 54e541a commit e67c408
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
build:
strategy:
fail-fast: true
fail-fast: false
matrix:
os:
- macos-13
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
contents: write # Allows this job to create releases

strategy:
fail-fast: true
fail-fast: false
matrix:
os:
- macos-13
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build:main": "cd ./packages/main && vite build",
"build:preload": "cd ./packages/preload && vite build",
"build:renderer": "cd ./packages/renderer && vite build",
"compile": "cross-env MODE=production yarn build && electron-builder build --config electron-builder.yml --dir --config.asar=false",
"compile": "cross-env MODE=production yarn build && electron-builder build --config electron-builder.yml --dir",
"test": "yarn test:main && yarn test:preload && yarn test:renderer && yarn test:e2e",
"test:e2e": "yarn build && vitest run",
"test:main": "vitest run -r packages/main --passWithNoTests",
Expand Down

0 comments on commit e67c408

Please sign in to comment.