38 lines
747 B
YAML
38 lines
747 B
YAML
---
|
|
project_name: jellyfixer
|
|
gitea_urls:
|
|
api: https://git.xsfx.dev/api/v1/
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
ldflags:
|
|
- "-s -w"
|
|
- '-extldflags "-static"'
|
|
- "-X main.version={{.Version}}"
|
|
- "-X main.commit={{.ShortCommit}}"
|
|
- "-X main.date={{.Date}}"
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
|
|
checksum:
|
|
name_template: "checksums.txt"
|
|
|
|
snapshot:
|
|
name_template: "{{ .Tag }}-next"
|
|
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|
|
|
|
dockers:
|
|
- image_templates:
|
|
- "quay.io/xsteadfastx/jellyfixer:latest"
|
|
- "quay.io/xsteadfastx/jellyfixer:{{ .Tag }}"
|
|
- "quay.io/xsteadfastx/jellyfixer:v{{ .Major }}"
|
|
dockerfile: build/package/docker/Dockerfile
|