-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
111 lines (101 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
project_name: aves
release:
github:
owner: maarek
name: aves
before:
hooks:
- go mod download
builds:
- id: aves
binary: aves
goos:
- darwin
- windows
- linux
- freebsd
goarch:
- amd64
- arm64
- arm
- 386
goarm:
- 6
- 7
env:
- CGO_ENABLED=0
main: ./cmd/server/
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.ShortCommit}} -X main.date={{.Date}}
- id: avcli
binary: avcli
goos:
- darwin
- windows
- linux
- freebsd
goarch:
- amd64
- arm64
- arm
- 386
goarm:
- 6
- 7
env:
- CGO_ENABLED=0
main: ./cmd/cli/
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.ShortCommit}} -X main.date={{.Date}}
archives:
- format: tar.gz
wrap_in_directory: true
format_overrides:
- goos: windows
format: zip
name_template: '{{ .Binary }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
files:
- LICENSE
- README.md
snapshot:
name_template: SNAPSHOT-{{ .Commit }}
checksum:
name_template: '{{ .ProjectName }}-{{ .Version }}-checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^dev:'
- 'README'
- Merge pull request
- Merge branch
dockers:
- dockerfile: build/Dockerfile.aves
binaries:
- aves
image_templates:
- "estools/aves:latest"
- "estools/aves:{{ .Tag }}"
- "estools/aves:v{{ .Major }}.{{ .Minor }}"
- dockerfile: build/Dockerfile.aves.alpine
binaries:
- aves
image_templates:
- "estools/aves:latest-alpine"
- "estools/aves:{{ .Tag }}-alpine"
- "estools/aves:v{{ .Major }}.{{ .Minor }}-alpine"
- dockerfile: build/Dockerfile.avcli
binaries:
- avcli
image_templates:
- "estools/avcli:latest"
- "estools/avcli:{{ .Tag }}"
- "estools/avcli:v{{ .Major }}.{{ .Minor }}"
- dockerfile: build/Dockerfile.avcli.alpine
binaries:
- avcli
image_templates:
- "estools/avcli:latest-alpine"
- "estools/avcli:{{ .Tag }}-alpine"
- "estools/avcli:v{{ .Major }}.{{ .Minor }}-alpine"