-
Notifications
You must be signed in to change notification settings - Fork 23
/
.goreleaser.yaml
52 lines (46 loc) · 1.23 KB
/
.goreleaser.yaml
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
# Make sure to check the documentation at https://goreleaser.com
git:
ignore_tags:
- "arcadia-*"
- "component-store-*"
- "llm-worker-*"
- "jupyterlab-*"
builds:
- skip: true
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
use: github
groups:
- title: New Features
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: 'Bug Fixes'
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: Others
order: 999
filters:
exclude:
- '^Merge pull request'
- '^Merge branch'
release:
draft: true
replace_existing_draft: false
mode: append
header: |
## {{.ProjectName}}-v{{.Version}}
Welcome to this new release!
### Images built for this release:
- `kubeagi/arcadia:v{{ .Version }}`
- `kubeagi/data-processing:v{{ .Version }}`
### Breaking Changes:
None
### Feature summary 🚀 🚀 🚀
TODO
footer: |
## Thanks to our Contributors!
Thank you to everyone who contributed to {{.Tag}}! ❤️
And thank you very much to everyone else not listed here who contributed in other ways like filing issues, giving feedback, testing fixes, helping users in slack, etc. 🙏
name_template: "v{{.Version}}"