-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
153 lines (144 loc) · 4.83 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
version: 2
env:
- GO111MODULE=on
- CGO_ENABLED=0
# before:
# hooks:
# - ./scripts/manpages.sh
# - ./scripts/completions.sh
builds:
-
binary: go-template
ldflags:
- -s -w
- -X main.version={{ .Version }}
- -X main.buildTime={{ .Date }}
- -X main.gitCommit={{ .FullCommit }}
goos:
- linux
- darwin
- windows
- freebsd
goarch:
- "386"
- amd64
- arm64
overrides:
- goos: darwin
goarch: amd64
ldflags:
- -s -w
env:
- CGO_ENABLED=0
- goos: darwin
goarch: arm64
ldflags:
- -s -w
env:
- CGO_ENABLED=0
- goos: linux
ldflags:
- -s -w -extldflags "-static"
- -X main.version={{ .Version }}
- -X main.buildTime={{ .Date }}
- -X main.gitCommit={{ .FullCommit }}
archives:
-
builds:
- go-template
format_overrides:
- goos: windows
format: zip
# files:
# - "config_example.toml"
release:
github:
owner: nerdneilsfield
name: go-template
# dockers:
# - image_templates:
# - 'nerdneils/go-template:{{ .Tag }}-amd64'
# - 'ghcr.io/nerdneilsfield/go-template:{{ .Tag }}-amd64'
# dockerfile: Dockerfile
# use: buildx
# build_flag_templates:
# - "--pull"
# - "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/nerdneilsfield/go-template/master/README.md"
# - "--label=io.artifacthub.package.maintainers=[{\"name\":\"dengqqi\",\"email\":\"dengqqi935@gmail.com\"}]"
# - "--label=io.artifacthub.package.license=MIT"
# - "--label=org.opencontainers.image.description=A fast and flexible translation gateway that routes requests to various LLM endpoints with configurable rate limiting and model-specific prompts."
# - "--label=org.opencontainers.image.created={{.Date}}"
# - "--label=org.opencontainers.image.name={{.ProjectName}}"
# - "--label=org.opencontainers.image.revision={{.FullCommit}}"
# - "--label=org.opencontainers.image.version={{.Version}}"
# - "--label=org.opencontainers.image.source={{.GitURL}}"
# - "--platform=linux/amd64"
# extra_files:
# - "config_example.toml"
# - image_templates:
# - 'nerdneils/go-template:{{ .Tag }}-arm64'
# - 'ghcr.io/nerdneilsfield/go-template:{{ .Tag }}-arm64'
# dockerfile: Dockerfile
# use: buildx
# build_flag_templates:
# - "--pull"
# - "--label=io.artifacthub.package.readme-url=https://raw.githubusercontent.com/nerdneilsfield/go-template/master/README.md"
# # - "--label=io.artifacthub.package.logo-url=https://raw.githubusercontent.com/nerdneilsfield/ghproxy-go/master/www/static/images/logo.png"
# - "--label=io.artifacthub.package.maintainers=[{\"name\":\"dengqqi\",\"email\":\"dengqqi935@gmail.com\"}]"
# - "--label=io.artifacthub.package.license=MIT"
# - "--label=org.opencontainers.image.description=A fast and flexible translation gateway that routes requests to various LLM endpoints with configurable rate limiting and model-specific prompts."
# - "--label=org.opencontainers.image.created={{.Date}}"
# - "--label=org.opencontainers.image.name={{.ProjectName}}"
# - "--label=org.opencontainers.image.revision={{.FullCommit}}"
# - "--label=org.opencontainers.image.version={{.Version}}"
# - "--label=org.opencontainers.image.source={{.GitURL}}"
# - "--platform=linux/arm64"
# goarch: arm64
# extra_files:
# - "config_example.toml"
# docker_manifests:
# - name_template: 'nerdneils/go-template:{{ .Tag }}'
# image_templates:
# - 'nerdneils/go-template:{{ .Tag }}-amd64'
# - 'nerdneils/go-template:{{ .Tag }}-arm64'
# - name_template: 'ghcr.io/nerdneilsfield/go-template:{{ .Tag }}'
# image_templates:
# - 'ghcr.io/nerdneilsfield/go-template:{{ .Tag }}-amd64'
# - 'ghcr.io/nerdneilsfield/go-template:{{ .Tag }}-arm64'
# - name_template: 'nerdneils/go-template:latest'
# image_templates:
# - 'nerdneils/go-template:{{ .Tag }}-amd64'
# - 'nerdneils/go-template:{{ .Tag }}-arm64'
# - name_template: 'ghcr.io/nerdneilsfield/go-template:latest'
# image_templates:
# - 'ghcr.io/nerdneilsfield/go-template:{{ .Tag }}-amd64'
# - 'ghcr.io/nerdneilsfield/go-template:{{ .Tag }}-arm64'
checksum:
name_template: "checksums.txt"
changelog:
sort: asc
use: github
filters:
exclude:
- '^test:'
- '^chore'
- 'merge conflict'
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
groups:
- title: Dependency updates
regexp: '^.*?(feat|fix)\(deps\)!?:.+$'
order: 300
- title: 'New Features'
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 100
- title: 'Bug fixes'
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 200
- title: 'Documentation updates'
regexp: ^.*?doc(\([[:word:]]+\))??!?:.+$
order: 400
- title: Other work
order: 9999