Fix macOS packaging: create .app bundle manually
Some checks failed
ci / build-test (push) Has been cancelled
ci / docker-build (push) Has been cancelled
Desktop App / Build Linux (amd64) (push) Has been cancelled
Desktop App / Attach to Release (push) Has been cancelled

wails3 build v3 alpha delegates to Taskfile; the go build produces a raw
binary, not a .app. Package step now creates the bundle structure
(Contents/MacOS, Info.plist) and zips it.
This commit is contained in:
2026-07-13 23:03:16 +02:00
parent 8f121cfa1e
commit 35ff3f37e1
3 changed files with 48 additions and 0 deletions

14
cmd/desktop/Taskfile.yml Normal file
View File

@@ -0,0 +1,14 @@
version: '3'
tasks:
build:
summary: Build the Oikos desktop app
cmds:
- go build -o build/bin/oikos-desktop .
env:
CGO_ENABLED: 1
dev:
summary: Run in development mode
cmds:
- go run .