-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
94 lines (79 loc) · 2.16 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
project_name: SpaghettiCannon
before:
hooks:
- go mod download
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
- arm64
main: main.go
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.ShortCommit}} -X main.date={{ .CommitDate }}
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Branch }}-{{ .ShortCommit }}"
changelog:
sort: asc
groups:
- title: 'Security'
regexp: '^.*?security(\([[:word:]]+\))??!?:.+$'
order: 0
- title: 'Features'
regexp: '^.*?feature(\([[:word:]]+\))??!?:.+$'
order: 1
- title: 'Bug fixes'
regexp: '^.*?bugfix(\([[:word:]]+\))??!?:.+$'
order: 2
- title: Others
order: 999
filters:
exclude:
- '^docs:'
- '^test:'
- '^cicd:'
- '^refactor:'
archives: []
dockers:
- image_templates:
- "ghcr.io/jamesread/spaghetticannon:{{ .Tag }}-amd64"
dockerfile: Dockerfile
goos: linux
goarch: amd64
skip_push: false
build_flag_templates:
- "--platform=linux/amd64"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Tag}}"
extra_files:
- webui
- config.yaml
- image_templates:
- "ghcr.io/jamesread/spaghetticannon:{{ .Tag }}-arm64"
dockerfile: Dockerfile
goos: linux
goarch: arm64
skip_push: false
build_flag_templates:
- "--platform=linux/arm64"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Tag}}"
extra_files:
- webui
- config.yaml
docker_manifests:
- name_template: ghcr.io/jamesread/spaghetticannon:latest
image_templates:
- ghcr.io/jamesread/spaghetticannon:{{ .Version }}-amd64
- ghcr.io/jamesread/spaghetticannon:{{ .Version }}-arm64
release:
footer: |
## Container images (from GitHub)
- `docker pull ghcr.io/jamesread/spaghetticannon:{{ .Version }}`
## Upgrade warnings, or breaking changes
- No such issues between the last release and this version.
Thanks for your interest in SpaghettiCannon!