chore: add goreleaser config
This commit is contained in:
parent
f318e7f880
commit
55ad5ffc62
50
.goreleaser.yaml
Normal file
50
.goreleaser.yaml
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
version: 2
|
||||
|
||||
before:
|
||||
hooks:
|
||||
- go mod tidy
|
||||
|
||||
builds:
|
||||
- env:
|
||||
- CGO_ENABLED=0
|
||||
goos:
|
||||
- linux
|
||||
- windows
|
||||
- darwin
|
||||
main: ./cmd/difi
|
||||
|
||||
archives:
|
||||
- format: tar.gz
|
||||
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 }}
|
||||
format_overrides:
|
||||
- goos: windows
|
||||
format: zip
|
||||
|
||||
checksum:
|
||||
name_template: 'checksums.txt'
|
||||
|
||||
snapshot:
|
||||
version_template: "{{ incpatch .Version }}-next"
|
||||
|
||||
changelog:
|
||||
sort: asc
|
||||
filters:
|
||||
exclude:
|
||||
- '^docs:'
|
||||
- '^test:'
|
||||
|
||||
brews:
|
||||
- repository:
|
||||
owner: oug-t
|
||||
name: homebrew-difi
|
||||
token: "{{ .Env.GITHUB_TOKEN }}"
|
||||
directory: Formula
|
||||
homepage: "https://github.com/oug-t/difi"
|
||||
description: "The pixel-perfect terminal diff viewer"
|
||||
license: "MIT"
|
||||
Loading…
Reference in New Issue
Block a user