diff options
Diffstat (limited to '.goreleaser.yml')
| -rw-r--r-- | .goreleaser.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.goreleaser.yml b/.goreleaser.yml new file mode 100644 index 0000000..e0f3afd --- /dev/null +++ b/.goreleaser.yml @@ -0,0 +1,35 @@ +--- +builds: + - + flags: -tags "static_build" + ldflags: -w -X github.com/prologic/tube/.Version={{.Version}} -X github.com/prologic/tube/.Commit={{.Commit}} + env: + - CGO_ENABLED=0 + goos: + - windows + - freebsd + - darwin + - linux + goarch: + - amd64 + - arm + - arm64 +sign: + artifacts: checksum +archive: + replacements: + darwin: Darwin + linux: Linux + windows: Windows + 386: i386 + amd64: x86_64 +checksum: + name_template: 'checksums.txt' +snapshot: + name_template: "{{ .Tag }}-next" +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:' |
