-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.goreleaser.yml
50 lines (43 loc) · 849 Bytes
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
version: 2
before:
hooks:
- go mod download
builds:
- goos:
- linux
- darwin
goarch:
- amd64
- arm64
main: ./cmd/travelgrunt/main.go
ldflags:
- -X main.appVersion={{.Env.RELEASE_VERSION}}
tags:
- netgo
- osusergo
brews:
- name: travelgrunt
homepage: 'https://github.com/ivanilves/travelgrunt'
description: 'cd inside [mono]repos without fatigue!'
directory: Formula
repository:
owner: ivanilves
name: homebrew-tap
archives:
- name_template: "{{ .ProjectName }}_{{ .Tag }}_{{ .Os }}_{{ .Arch }}"
format: tar.gz
checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
algorithm: sha256
snapshot:
version_template: "{{ .Tag }}-snapshot"
changelog:
use: github-native
sort: asc
filters:
exclude:
- '^chore'
- '^test'
- '^style'
- '^docs'
- '^Merge pull request'