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
14 changes: 11 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,19 @@ jobs:
fi
bun run dist:mac
- name: Upload macOS DMG
- name: Upload macOS DMG (x64)
uses: actions/upload-artifact@v4
with:
name: macos-dmg
path: release/*.dmg
name: macos-dmg-x64
path: release/*-x64.dmg
retention-days: 30
if-no-files-found: error

- name: Upload macOS DMG (arm64)
uses: actions/upload-artifact@v4
with:
name: macos-dmg-arm64
path: release/*-arm64.dmg
retention-days: 30
if-no-files-found: error

Expand Down
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,6 @@
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"dmg": {
"sign": true
},
"linux": {
"target": "AppImage",
"category": "Development",
Expand Down