From 15efe191be6a27a4deb4dfd253eeee3783104bf9 Mon Sep 17 00:00:00 2001 From: hrzlgnm Date: Sun, 20 Oct 2024 15:47:34 +0200 Subject: [PATCH] feat: add bundling of rpm (#412) --- .github/workflows/desktop-tauri.yml | 1 + src-tauri/tauri.conf.json | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/desktop-tauri.yml b/.github/workflows/desktop-tauri.yml index b3e02b4..d405e73 100644 --- a/.github/workflows/desktop-tauri.yml +++ b/.github/workflows/desktop-tauri.yml @@ -168,6 +168,7 @@ jobs: target/**/release/bundle/macos/*.tar.gz* target/**/release/bundle/dmg/*.dmg target/release/bundle/deb/*.deb + target/release/bundle/rpm/*.rpm target/**/release/mdns-browser target/release/mdns-browser.exe diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index eaf0d04..e257ab3 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -7,11 +7,14 @@ }, "bundle": { "active": true, + "licenseFile": "../LICENSE", + "license": "MIT", "targets": [ "app", "deb", "dmg", - "nsis" + "nsis", + "rpm" ], "icon": [ "icons/32x32.png",