-
Notifications
You must be signed in to change notification settings - Fork 25
/
.goreleaser.yml
42 lines (37 loc) · 1.1 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
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
project_name: protonwire
snapshot:
# This should be semver otherwise triggers https://github.com/goreleaser/goreleaser/issues/2081
name_template: "{{ .Version }}-{{.ShortCommit}}-dev"
builds:
- skip: true
changelog:
sort: asc
groups:
- title: "🍒 Features & Enhancements"
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: "🐛 Bug Fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: "🚧 Maintenance"
regexp: "^.*chore[(\\w)]*:+.*$"
order: 2
- title: "🖥️ Metadata API"
regexp: "^.*metadata[(\\w)]*:+.*$"
order: 4
filters:
exclude:
- '^.*doc(s)?[(\\w)]*:+.*$'
- '^.*release(s)?[(\\w)]*:+.*$'
- '^.*bot(s)?[(\\w)]*:+.*$'
release:
mode: replace
prerelease: auto
# Set this to true if you want to disable just the artifact upload to the SCM.
# If this is true, GoReleaser will still create the release with the
# changelog, but won't upload anything to it.
#
# Since: v1.11
# Templates: allowed (since v1.15)
skip_upload: true