From d6f8396a0a865e54835a0a5a2e0c711ebabd9321 Mon Sep 17 00:00:00 2001 From: Ammar Bandukwala Date: Tue, 7 Oct 2025 15:02:02 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Enable=20DMG=20code=20signing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .app bundles were being signed, but the final DMG files were not. Adding dmg.sign configuration to ensure the DMG itself is also signed. _Generated with `cmux`_ --- package.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 5f8e4fdfe..db5f39594 100644 --- a/package.json +++ b/package.json @@ -104,10 +104,11 @@ "target": [ { "target": "dmg", - "arch": [ - "x64", - "arm64" - ] + "arch": "x64" + }, + { + "target": "dmg", + "arch": "arm64" } ], "icon": "build/icon.icns", @@ -117,6 +118,9 @@ "entitlements": "build/entitlements.mac.plist", "entitlementsInherit": "build/entitlements.mac.plist" }, + "dmg": { + "sign": true + }, "linux": { "target": "AppImage", "category": "Development",