From 6fb900fe4bf5caa5fcced3a376901da193c0078e Mon Sep 17 00:00:00 2001 From: Joscha Date: Sun, 2 Feb 2025 16:19:19 +0100 Subject: [PATCH] Disable bundling in build For one, it fails on arch linux, which is what I'm developing on: https://github.com/tauri-apps/tauri/issues/8929 https://github.com/tauri-apps/tauri/issues/11149 https://github.com/linuxdeploy/linuxdeploy/issues/272 At the moment, I plan on distributing Linux and Windows binaries as well as an APK for Android. If I'll ever include any bundles in the CI, they can be manually triggered using --bundles. --- gdn-app/src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdn-app/src-tauri/tauri.conf.json b/gdn-app/src-tauri/tauri.conf.json index f446dcd..7e307fe 100644 --- a/gdn-app/src-tauri/tauri.conf.json +++ b/gdn-app/src-tauri/tauri.conf.json @@ -22,7 +22,7 @@ } }, "bundle": { - "active": true, + "active": false, "targets": "all", "icon": [ "icons/32x32.png",