From ccef55d95d4cfc3f7ec721457f67e2a863132db3 Mon Sep 17 00:00:00 2001 From: Tushar Gupta Date: Thu, 1 Jan 2026 12:47:17 +0530 Subject: [PATCH 1/4] Added appimage bundler --- frontend/src-tauri/tauri.conf.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src-tauri/tauri.conf.json b/frontend/src-tauri/tauri.conf.json index c32e7e5d3..2a22c399b 100644 --- a/frontend/src-tauri/tauri.conf.json +++ b/frontend/src-tauri/tauri.conf.json @@ -7,11 +7,14 @@ }, "bundle": { "active": true, - "targets": ["nsis", "deb", "app"], + "targets": ["nsis", "appimage", "deb", "app"], "createUpdaterArtifacts": true, "linux": { "deb": { "postInstallScript": "./postinstall.sh" + }, + "appimage": { + "bundleMediaFramework": true } }, "icon": [ From 79a160a77812ae7f43882b8dafb674633754558b Mon Sep 17 00:00:00 2001 From: Tushar Gupta Date: Thu, 1 Jan 2026 12:53:40 +0530 Subject: [PATCH 2/4] Added files parameter --- frontend/src-tauri/tauri.conf.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src-tauri/tauri.conf.json b/frontend/src-tauri/tauri.conf.json index 2a22c399b..60a117c55 100644 --- a/frontend/src-tauri/tauri.conf.json +++ b/frontend/src-tauri/tauri.conf.json @@ -14,7 +14,8 @@ "postInstallScript": "./postinstall.sh" }, "appimage": { - "bundleMediaFramework": true + "bundleMediaFramework": true, + "files": {} } }, "icon": [ From 372a6607a17fb7423238a840b673223e7fafafa9 Mon Sep 17 00:00:00 2001 From: Tushar Gupta Date: Tue, 6 Jan 2026 00:27:40 +0530 Subject: [PATCH 3/4] Added copy command to copy the utils folder to backend and sync_microservice --- .github/workflows/build-and-release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 62e90f580..c65a27b4d 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -319,6 +319,11 @@ jobs: unzip -o *.zip rm *.zip ls -l + - name: Copy utils folder + shell: bash + run: | + cp -r utils backend/dist/utils + cp -r utils sync-microservice/dist/utils - name: Setup Node uses: actions/setup-node@v4 with: From dffbf3018be15f2a90927109edab8bbb021daf2f Mon Sep 17 00:00:00 2001 From: Tushar Gupta Date: Tue, 6 Jan 2026 00:29:37 +0530 Subject: [PATCH 4/4] Reverted apimage --- frontend/src-tauri/tauri.conf.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/frontend/src-tauri/tauri.conf.json b/frontend/src-tauri/tauri.conf.json index 3d78780a0..8ad815dfd 100644 --- a/frontend/src-tauri/tauri.conf.json +++ b/frontend/src-tauri/tauri.conf.json @@ -7,15 +7,11 @@ }, "bundle": { "active": true, - "targets": ["nsis", "appimage", "deb", "app"], + "targets": ["nsis", "deb", "app"], "createUpdaterArtifacts": true, "linux": { "deb": { "postInstallScript": "./postinstall.sh" - }, - "appimage": { - "bundleMediaFramework": true, - "files": {} } }, "icon": [