jellyfixer/.goreleaser.yml

38 lines
747 B
YAML
Raw Permalink Normal View History

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