Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,13 @@ jobs:
build-and-release:
strategy:
matrix:
os:
[
macos-latest,
macos-26-intel,
ubuntu-latest,
ubuntu-24.04-arm,
windows-latest,
windows-11-arm,
os: [
macos-15, # M1/M2 Apple Silicon runner
macos-26-intel, # Intel-based macOS runner
ubuntu-latest, # Ubuntu 24.04 x64 runner
ubuntu-24.04-arm, # Ubuntu 24.04 ARM runner
windows-latest, # Windows 2022 x64 runner
windows-11-arm, # Windows 11 ARM runner
]
runs-on: ${{ matrix.os }}

Expand Down
10 changes: 9 additions & 1 deletion electrobun.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,26 @@ export default {
"dist/index.html": "views/mainview/index.html",
},
linux: {
bundleCEF: false,
bundleCEF: true,
defaultRenderer: "cef",
icon: "icon.iconset/icon_512x512.png",
bundleWGPU: false,
},
mac: {
bundleCEF: false,
icons: "icon.iconset",
notarize: false,
codesign: false,
defaultRenderer: "native",
bundleWGPU: false,
},
// @ts-expect-error - watchIgnore is not in the type definition but is in the docs
watchIgnore: ["dist/**"],
win: {
bundleCEF: false,
icon: "assets/icon_512x512.ico",
defaultRenderer: "native",
bundleWGPU: false,
},
},
} satisfies ElectrobunConfig;
Loading