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.
15 lines
229 B
YAML
15 lines
229 B
YAML
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 .
|