2024-05-05 00:37:08 +02:00
|
|
|
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
|
|
|
|
|
|
|
|
|
|
version: 1
|
|
|
|
|
|
|
|
|
|
builds:
|
|
|
|
|
- env:
|
|
|
|
|
- CGO_ENABLED=0
|
2024-05-05 01:01:37 +02:00
|
|
|
ldflags:
|
|
|
|
|
- -X {{ .ModulePath }}/internal/version.version={{ .Version }}
|
|
|
|
|
- -X {{ .ModulePath }}/internal/version.versionPrerelease=
|
2024-05-05 00:37:08 +02:00
|
|
|
goos:
|
|
|
|
|
- linux
|
|
|
|
|
- windows
|
|
|
|
|
- darwin
|
|
|
|
|
|
|
|
|
|
archives:
|
|
|
|
|
- format: tar.gz
|
|
|
|
|
# this name template makes the OS and Arch compatible with the results of `uname`.
|
|
|
|
|
name_template: >-
|
|
|
|
|
{{ .ProjectName }}_
|
|
|
|
|
{{- title .Os }}_
|
|
|
|
|
{{- if eq .Arch "amd64" }}x86_64
|
|
|
|
|
{{- else if eq .Arch "386" }}i386
|
|
|
|
|
{{- else }}{{ .Arch }}{{ end }}
|
|
|
|
|
{{- if .Arm }}v{{ .Arm }}{{ end }}
|
|
|
|
|
# use zip for windows archives
|
|
|
|
|
format_overrides:
|
|
|
|
|
- goos: windows
|
|
|
|
|
format: zip
|
|
|
|
|
|
2024-05-05 01:01:37 +02:00
|
|
|
snapshot:
|
|
|
|
|
name_template: "{{ .Version }}-dev+{{ .ShortCommit }}"
|
|
|
|
|
|
2024-05-05 00:37:08 +02:00
|
|
|
changelog:
|
|
|
|
|
# Generated by release-please
|
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
|
|
|