From 7faf9aec4fd237c3054d1c8945bf528e1c088d1a Mon Sep 17 00:00:00 2001 From: Binarybaron Date: Thu, 14 Nov 2024 16:42:51 +0100 Subject: [PATCH] fix(ci, tauri): Only build appimage, dmg, nsis and msi --- src-tauri/tauri.conf.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index d2051973..4238e752 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -25,7 +25,11 @@ "bundle": { "createUpdaterArtifacts": true, "active": true, - "targets": "all", + "targets": [ + "appimage", + "dmg", + "nsis" + ], "icon": [ "icons/32x32.png", "icons/128x128.png", @@ -52,4 +56,4 @@ ] } } -} +} \ No newline at end of file