github.com/lino-network/lino@v0.6.11/.goreleaser.yml (about) 1 # This is an example goreleaser.yaml file with some sane defaults. 2 # Make sure to check the documentation at http://goreleaser.com 3 # 4 env: 5 - GO111MODULE=on 6 before: 7 hooks: 8 # you may remove this if you don't use vgo 9 # go mod tidy is flaky with go get. 10 # - go mod tidy 11 # you may remove this if you don't need go generate 12 # - go generate ./... 13 builds: 14 - 15 id: "linocli" 16 main: ./cmd/linocli/main.go 17 binary: linocli 18 env: 19 - CGO_ENABLED=0 20 goos: 21 - linux 22 - darwin 23 - windows 24 goarch: 25 - amd64 26 - arm 27 archives: 28 - replacements: 29 darwin: Darwin 30 linux: Linux 31 windows: Windows 32 386: i386 33 amd64: x86_64 34 checksum: 35 name_template: 'checksums.txt' 36 snapshot: 37 name_template: "{{ .Tag }}-next" 38 changelog: 39 sort: asc 40 filters: 41 exclude: 42 - '^docs:' 43 - '^test:'