Skip to content

Commit c14bd2c

Browse files
thisisharsh7claude
andcommitted
fix: build only .app bundles for macOS to avoid signing
- Add --bundles app flag to macOS builds - Skips DMG creation which requires code signing - .app bundles work without signing in unsigned builds - Users can still install the .app from releases 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d73835e commit c14bd2c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
matrix:
4848
include:
4949
- platform: "macos-latest" # for Arm based macs (M1 and above).
50-
args: "--target aarch64-apple-darwin"
50+
args: "--target aarch64-apple-darwin --bundles app"
5151
target: "aarch64-apple-darwin"
5252
- platform: "macos-latest" # for Intel based macs.
53-
args: "--target x86_64-apple-darwin"
53+
args: "--target x86_64-apple-darwin --bundles app"
5454
target: "x86_64-apple-darwin"
5555
- platform: "ubuntu-22.04" # Build .deb on 22.04
5656
args: "--bundles deb"

0 commit comments

Comments
 (0)