From 9e6d0792ffb2d70546ccaa9833776fca7338f346 Mon Sep 17 00:00:00 2001 From: yougotwill Date: Wed, 19 Feb 2025 13:43:28 +1100 Subject: [PATCH] feat: building a release now targets both architectures --- package.json | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 851cb0683..82b0bf115 100644 --- a/package.json +++ b/package.json @@ -227,8 +227,30 @@ "category": "public.app-category.social-networking", "icon": "build/icon-mac.icns", "target": [ - "dmg", - "zip" + { + "target": "dmg", + "arch": [ + "arm64" + ] + }, + { + "target": "zip", + "arch": [ + "arm64" + ] + }, + { + "target": "dmg", + "arch": [ + "x64" + ] + }, + { + "target": "zip", + "arch": [ + "x64" + ] + } ], "bundleVersion": "1", "hardenedRuntime": true,