github.com/vicanso/pike@v1.0.1-0.20210630235453-9099e041f6ec/.goreleaser.yml (about) 1 # This is an example .goreleaser.yml file with some sane defaults. 2 # Make sure to check the documentation at http://goreleaser.com 3 before: 4 hooks: 5 # You may remove this if you don't use go modules. 6 - make cp-asset 7 - go mod download 8 builds: 9 - env: 10 - CGO_ENABLED=0 11 goos: 12 - linux 13 - windows 14 - darwin 15 archives: 16 - replacements: 17 darwin: Darwin 18 linux: Linux 19 windows: Windows 20 386: i386 21 amd64: x86_64 22 checksum: 23 name_template: 'checksums.txt' 24 snapshot: 25 name_template: "{{ .Tag }}-next" 26 changelog: 27 sort: asc 28 filters: 29 exclude: 30 - '^docs:' 31 - '^test:'