Added goreleaser and GitHub workflow

This commit is contained in:
David Allen 2024-07-30 10:47:39 -06:00
parent 699ff76e42
commit 6f027fa7fb
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC
2 changed files with 81 additions and 0 deletions

42
.goreleaser.yaml Normal file
View file

@ -0,0 +1,42 @@
version: 2
before:
hooks:
- go mod download
builds:
- env:
- CGO_ENABLED=1
goos:
- linux
goarch:
- amd64
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 }}
files:
- LICENSE
- CHANGELOG.md
- README.md
- configurator
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
release:
github:
name_template: "{{.Version}}"
prerelease: auto
mode: append