-
Notifications
You must be signed in to change notification settings - Fork 2
/
.goreleaser.yml
40 lines (38 loc) · 973 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
project_name: Audimance
builds:
- binary: audimance
env:
- CGO_ENABLED=0
goos:
- windows
- darwin
- linux
goarch:
- amd64
- arm64
- arm
archives:
- id: audimance
format: binary
name_template: "{{ .Binary }}.{{ .Os }}.{{ .Arch }}"
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
dockers:
- dockerfile: Dockerfile.goreleaser
image_templates:
- 'cycoresystems/audimance:{{ .Tag }}'
- 'cycoresystems/audimance:{{ .Major }}'
- 'cycoresystems/audimance:{{ .Major }}.{{ .Minor }}'
- 'cycoresystems/audimance:latest'
- 'ghcr.io/cycoresystems/audimance:{{ .Tag }}'
- 'ghcr.io/cycoresystems/audimance:{{ .Major }}'
- 'ghcr.io/cycoresystems/audimance:{{ .Major }}.{{ .Minor }}'
- 'ghcr.io/cycoresystems/audimance:latest'