difi/.goreleaser.yaml
2026-01-30 22:43:17 -05:00

51 lines
925 B
YAML

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"