Commit b186690 1 parent eaaade4 commit b186690 Copy full SHA for b186690
File tree 1 file changed +33
-2
lines changed
1 file changed +33
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Make sure to check the documentation at https://goreleaser.com
2
- project_name : azure-openai-proxy
3
2
env :
4
3
- GIT_URL=https://github.com/stulzq/azure-openai-proxy
5
4
before :
@@ -17,6 +16,8 @@ builds:
17
16
- amd64
18
17
main : ./cmd
19
18
binary : azure-openai-proxy
19
+ flags :
20
+ - -trimpath
20
21
ldflags :
21
22
- -s -w
22
23
- -X main.version={{ .Version }}
@@ -41,13 +42,43 @@ checksum:
41
42
name_template : ' checksums.txt'
42
43
snapshot :
43
44
name_template : " {{ incpatch .Version }}-next"
45
+
46
+ # https://goreleaser.com/customization/changelog/
44
47
changelog :
45
48
sort : asc
49
+ use : github
46
50
filters :
47
51
exclude :
48
52
- ' ^build:'
49
53
- ' ^ci:'
50
- - ' ^docs:'
54
+ # - '^docs:'
51
55
- ' ^test:'
52
56
- ' ^chore:'
53
57
- ' ^feat(deps):'
58
+ - ' merge conflict'
59
+ - Merge pull request
60
+ - Merge remote-tracking branch
61
+ - Merge branch
62
+ - go mod tidy
63
+ - ' ^Update'
64
+ groups :
65
+ - title : Dependency updates
66
+ regexp : ' ^.*?(feat|fix)\(deps\)!?:.+$'
67
+ order : 300
68
+ - title : ' New Features'
69
+ regexp : ' ^.*?feat(\([[:word:]]+\))??!?:.+$'
70
+ order : 100
71
+ - title : ' Security updates'
72
+ regexp : ' ^.*?sec(\([[:word:]]+\))??!?:.+$'
73
+ order : 150
74
+ - title : ' Bug fixes'
75
+ regexp : ' ^.*?fix(\([[:word:]]+\))??!?:.+$'
76
+ order : 200
77
+ - title : ' Documentation updates'
78
+ regexp : ' ^.*?doc(\([[:word:]]+\))??!?:.+$'
79
+ order : 400
80
+ # - title: 'Build process updates'
81
+ # regexp: '^.*?build(\([[:word:]]+\))??!?:.+$'
82
+ # order: 400
83
+ - title : Other work
84
+ order : 9999
You can’t perform that action at this time.
0 commit comments