-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.goreleaser.yml
More file actions
64 lines (54 loc) · 1.45 KB
/
.goreleaser.yml
File metadata and controls
64 lines (54 loc) · 1.45 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
# GoReleaser configuration for Go library
# This project is a library, not a binary, so we skip builds and only generate releases
version: 2
before:
hooks:
- go mod tidy
- go test ./...
# Skip binary builds (this is a library)
builds:
- skip: true
# Generate changelog
changelog:
use: github
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
- "^chore:"
- Merge pull request
- Merge branch
groups:
- title: Features
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: Bug Fixes
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: Security
regexp: '^.*?sec(\([[:word:]]+\))??!?:.+$'
order: 2
- title: Other Changes
order: 999
# GitHub Release configuration
release:
draft: false
prerelease: auto
mode: append
header: |
## OAuth MCP Proxy {{ .Tag }}
OAuth 2.1 authentication library for Go MCP servers.
### Installation
```bash
go get github.com/tuannvm/oauth-mcp-proxy@{{ .Tag }}
```
### Documentation
- [README](https://github.com/tuannvm/oauth-mcp-proxy#readme)
- [GoDoc](https://pkg.go.dev/github.com/tuannvm/oauth-mcp-proxy@{{ .Tag }})
- [Examples](https://github.com/tuannvm/oauth-mcp-proxy/tree/{{ .Tag }}/examples)
footer: |
**Full Changelog**: https://github.com/tuannvm/oauth-mcp-proxy/compare/{{ .PreviousTag }}...{{ .Tag }}
# Announce to pkg.go.dev (optional)
announce:
skip: false