-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
53 lines (53 loc) · 1.14 KB
/
.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
51
52
53
project_name: auth
release:
github:
owner: micro-community
name: auth
name_template: "Release {{.Tag}}"
before:
hooks:
- go mod download
builds:
- binary: auth
env:
- CGO_ENABLED=0
- GO111MODULE=on
ldflags: -s -w -X github.com/micro-community/micro-starter/config.GitCommit={{ .ShortCommit }} -X github.com/micro-community/micro-starter/config.GitTag={{ .Tag }} -X github.com/micro-community/micro-starter/config.BuildDate={{ .Timestamp }}
goos:
- linux
- darwin
- windows
goarch:
- 386
- amd64
- arm
- arm64
goarm:
- 7
archives:
- name_template: "{{.ProjectName}}-{{.Tag}}-{{.Os}}-{{.Arch}}{{if .Arm}}{{.Arm}}{{end}}"
replacements:
darwin: darwin
linux: linux
windows: windows
amd64: amd64
arm: arm
arm64: arm64
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
checksum:
name_template: "checksums.txt"
algorithm: sha256
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"