Files
yuki/Taskfile.yml
2026-01-21 15:57:27 -03:00

29 lines
460 B
YAML

# https://taskfile.dev
version: '3'
env:
GO: go
GOTELEMETRY: off
vars:
IMPORT: code.laidback.moe/yuki
VERSION: 2026.01.21
tasks:
default:
cmds:
- task: build
build:
desc: Build the interface
cmds:
- $GO build -v -ldflags='-w -X {{.IMPORT}}.Version={{.VERSION}}' -buildvcs=false -o yuki
clean:
desc: Remove generated files
cmds:
- rm -f yuki
tidy:
desc: Update go.mod
cmds:
- $GO mod tidy