forked from nscuro/traefik-plugin-geoblock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
44 lines (38 loc) · 837 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
project_name: traefik-plugin-geoblock
builds:
# traefik plugins are not built in advance, but interpreted by
# yaegi. Building plugins doesn't make sense, but we want to use
# the other goodies of GoReleaser.
- skip: true
release:
prerelease: auto
source:
enabled: true
sboms:
- artifacts: source
documents:
- "${artifact}.cdx.sbom"
cmd: cyclonedx-gomod
args: [ "mod", "-licenses", "-json", "-output", "$document", "./.." ]
milestones:
- name_template: "{{ .Tag }}"
close: true
changelog:
use: github
sort: asc
groups:
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: Fixes
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: Documentation
regexp: "^.*docs[(\\w)]*:+.*$"
order: 2
- title: Others
order: 999
filters:
exclude:
- '^test:'
- '^Merge '