feat: Implemented AppImage building

This commit is contained in:
Simeon Radivoev 2026-03-01 15:35:07 +02:00
parent d8f471dadc
commit 6a288f765e
38 changed files with 1036 additions and 147 deletions

18
.vscode/tasks.json vendored
View file

@ -39,10 +39,6 @@
"type": "shell",
"command": "bun run dev:hmr",
"isBackground": true,
"options": {
"env": {
}
},
"problemMatcher": [],
"presentation": {
"echo": true,
@ -52,6 +48,20 @@
"showReuseMessage": true,
"clear": false
}
},
{
"label": "Build Flatpak",
"type": "shell",
"command": "flatpak",
"args": [
"run",
"com.simeonradivoev.gameflow-deck",
"build/flatpak",
"flatpak/com.simeonradivoev.gameflow-deck.json",
"--force-clean"
],
"group": "build",
"problemMatcher": []
}
]
}