Sebastian Mark
7c2604c0bf
- create `Taskfile.yml` - initial tasks - add new version tag - push to remote and run goreleaser - create snapshot via goreleaser
40 lines
630 B
YAML
40 lines
630 B
YAML
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
|
|
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
|
|
|
|
version: 2
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
|
|
builds:
|
|
- goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
env:
|
|
- CGO_ENABLED=0
|
|
ldflags:
|
|
- -s -w -X {{.ModulePath}}/internal/metadata.ChronoTomatoVersion={{.Version}}
|
|
|
|
upx:
|
|
- enabled: true
|
|
compress: best
|
|
lzma: true
|
|
|
|
changelog:
|
|
use: gitea
|
|
|
|
archives:
|
|
- format: binary
|
|
|
|
release:
|
|
gitea:
|
|
owner: pomodoro
|
|
name: ChronoTomato
|
|
mode: replace
|
|
|
|
gitea_urls:
|
|
download: http://git.smsvc.net
|
|
api: http://git.smsvc.net/api/v1
|