-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.goreleaser.yml
More file actions
80 lines (71 loc) · 1.79 KB
/
.goreleaser.yml
File metadata and controls
80 lines (71 loc) · 1.79 KB
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
version: 2
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/contrabass
binary: contrabass
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- amd64
- arm64
ldflags:
- -s -w
- -X main.version={{.Version}}
- -X main.commit={{.Commit}}
- -X main.date={{.Date}}
archives:
- formats: ['tar.gz']
files:
- README.md
- LICENSE
brews:
- repository:
owner: junhoyeo
name: homebrew-contrabass
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
homepage: https://github.com/junhoyeo/contrabass
description: A project-level orchestrator for AI coding agents
license: Apache-2.0
install: |
bin.install "contrabass"
release:
header: |
<div align="center">
[<img alt="Contrabass" width="320px" src="https://github.com/junhoyeo/contrabass/raw/main/.github/assets/contrabass.png" />](https://github.com/junhoyeo/contrabass)
# `contrabass@{{ .Tag }}` is here!
</div>
changelog:
sort: asc
groups:
- title: "🚀 Features"
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: "🐛 Bug Fixes"
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: "⚡ Performance"
regexp: '^.*?perf(\([[:word:]]+\))??!?:.+$'
order: 2
- title: "♻️ Refactoring"
regexp: '^.*?refactor(\([[:word:]]+\))??!?:.+$'
order: 3
- title: "📝 Documentation"
regexp: '^.*?docs(\([[:word:]]+\))??!?:.+$'
order: 4
- title: "🧪 Tests"
regexp: '^.*?test(\([[:word:]]+\))??!?:.+$'
order: 5
- title: "🔧 Chore"
regexp: '^.*?chore(\([[:word:]]+\))??!?:.+$'
order: 6
- title: "🔧 Other"
order: 999
filters:
exclude:
- "^Merge"
- "^chore\\(project\\): auto-fix"