Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(gui): publish as deb file #162

Merged
merged 2 commits into from
Feb 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/purple-parts-lie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"deemix-gui": patch
---

Added deb maker to the releases
1 change: 1 addition & 0 deletions .github/workflows/build-release-electron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,4 @@ jobs:
gui/out/**/Deemix.exe
gui/out/**/Deemix*Setup.exe
gui/out/make/zip/**/*.zip
gui/out/make/deb/**/*.deb
13 changes: 13 additions & 0 deletions gui/forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default {
/^\/tsconfig.json/,
],
icon: "./build/icon.ico",
executableName: "deemix-gui",
},
rebuildConfig: {},
makers: [
Expand All @@ -25,6 +26,18 @@ export default {
name: "@electron-forge/maker-zip",
config: {},
},
{
name: "@electron-forge/maker-deb",
config: {
options: {
name: "deemix",
productName: "Deemix",
section: "sound",
icon: "./build/icon.ico",
categories: ["Audio"],
},
},
},
],
plugins: [
{
Expand Down