From 79bc8c08f130648c0b1a58871794e9661e83559d Mon Sep 17 00:00:00 2001 From: binarybaron <86064887+binarybaron@users.noreply.github.com> Date: Thu, 14 Nov 2024 18:55:24 +0100 Subject: [PATCH] fix(ci, tauri): Build darwin app target This is needed for the auto updater to work --- src-tauri/tauri.conf.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 4238e752..ceb0fd13 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -28,7 +28,8 @@ "targets": [ "appimage", "dmg", - "nsis" + "nsis", + "app" ], "icon": [ "icons/32x32.png", @@ -56,4 +57,4 @@ ] } } -} \ No newline at end of file +}