1
1
mirror of https://github.com/wader/fq.git synced 2024-08-16 23:40:43 +03:00
fq/.goreleaser.yml
Mattias Wadman 970465996c Init
2021-09-12 13:08:42 +02:00

57 lines
943 B
YAML

project_name: fq
before:
hooks:
- go mod download
builds:
- env:
- CGO_ENABLED=0
goarch:
- amd64
- arm64
goos:
- linux
- windows
- darwin
flags:
- -trimpath
ldflags:
# omit symbol table and debug information
- -s -w
- -X main.version={{.Version}}
- -X main.commit={{.Commit}}
- -X main.date={{.CommitDate}}
- -X main.builtBy=goreleaser
checksum:
name_template: 'checksums.txt'
archives:
- files:
- none*
format_overrides:
- goos: windows
format: zip
replacements:
darwin: macos
snapshot:
name_template: "{{.Tag}}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
- tap:
owner: wader
name: homebrew-tap
folder: Formula
homepage: https://github.com/wader/fq
description: jq for binaries
license: MIT
test: |
system "#{bin}/fq -v"