2021-03-19 00:10:22 +02:00
|
|
|
# This is an example goreleaser.yaml file with some sane defaults.
|
|
|
|
# Make sure to check the documentation at http://goreleaser.com
|
|
|
|
---
|
|
|
|
archives:
|
2023-08-24 19:41:23 +02:00
|
|
|
- id: revive
|
|
|
|
name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
|
2021-03-19 00:10:22 +02:00
|
|
|
before:
|
|
|
|
hooks:
|
|
|
|
- "go mod download"
|
|
|
|
- "go generate ./..."
|
|
|
|
builds:
|
|
|
|
-
|
|
|
|
env:
|
|
|
|
- CGO_ENABLED=0
|
2021-10-15 10:35:15 +02:00
|
|
|
- BUILDER=GoReleaser
|
2021-03-19 00:10:22 +02:00
|
|
|
goos:
|
|
|
|
- linux
|
|
|
|
- darwin
|
|
|
|
- windows
|
|
|
|
|
2021-10-15 08:36:14 +02:00
|
|
|
dockers:
|
2023-02-23 13:04:22 +02:00
|
|
|
- image_templates:
|
|
|
|
- "ghcr.io/mgechev/revive:{{ .Version }}"
|
|
|
|
- "ghcr.io/mgechev/revive:{{ .Tag }}"
|
|
|
|
- "ghcr.io/mgechev/revive:v{{ .Major }}.{{ .Minor }}"
|
|
|
|
- "ghcr.io/mgechev/revive:v{{ .Major }}"
|
|
|
|
- "ghcr.io/mgechev/revive:latest"
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
build_flag_templates:
|
|
|
|
- --label=org.opencontainers.image.created={{.Date}}
|
|
|
|
- --label=org.opencontainers.image.title={{ .ProjectName }}
|
|
|
|
- "--label=org.opencontainers.image.description=🔥 ~6x faster, stricter, configurable, extensible, and beautiful drop-in replacement for golint"
|
|
|
|
- --label=org.opencontainers.image.url=https://github.com/mgechev/revive
|
|
|
|
- --label=org.opencontainers.image.source=https://github.com/mgechev/revive
|
|
|
|
- --label=org.opencontainers.image.version={{ .Version }}
|
|
|
|
- --label=org.opencontainers.image.revision={{ .FullCommit }}
|
|
|
|
- --label=org.opencontainers.image.licenses=MIT
|
2021-03-19 00:10:22 +02:00
|
|
|
changelog:
|
|
|
|
filters:
|
|
|
|
exclude:
|
|
|
|
- "^docs:"
|
|
|
|
- "^test:"
|
|
|
|
sort: asc
|
|
|
|
checksum:
|
|
|
|
name_template: checksums.txt
|
|
|
|
snapshot:
|
|
|
|
name_template: "{{ .Tag }}-next"
|
|
|
|
project_name: revive
|