@@ -74,9 +74,7 @@ changelog:
74
74
- title : Others
75
75
order : 999
76
76
77
- # sboms:
78
- # - artifacts: archive
79
-
77
+ # Ref: https://goreleaser.com/customization/builds/
80
78
builds :
81
79
# You can have multiple builds defined as a yaml list
82
80
- # Path to main.go file or main package.
@@ -114,7 +112,6 @@ builds:
114
112
goarch :
115
113
- ' 386'
116
114
- ' amd64'
117
- - ' arm'
118
115
- ' arm64'
119
116
120
117
# GOAMD64 to build when GOARCH is amd64.
@@ -125,9 +122,7 @@ builds:
125
122
# https://go.dev/wiki/MinimumRequirements#amd64
126
123
# Default: [ 'v1' ].
127
124
goamd64 :
128
- - ' v2'
129
- - ' v3'
130
- - ' v4'
125
+ - ' v1'
131
126
132
127
# Set a specific go binary to use when building.
133
128
# It is safe to ignore this option in most cases.
@@ -200,11 +195,23 @@ archives:
200
195
- README.md
201
196
- CHANGELOG/CHANGELOG*
202
197
198
+ # Ref: https://goreleaser.com/customization/release/
203
199
release :
200
+ # Repo in which the release will be created.
201
+ # Default: extracted from the origin remote URL or empty if its private hosted.
204
202
github :
205
203
owner : sixafter
206
204
name : nanoid-cli
205
+
206
+ # You can change the name of the release.
207
+ #
208
+ # Default: '{{.Tag}}' ('{{.PrefixedTag}}' on Pro).
209
+ # Templates: allowed.
207
210
name_template : ' v{{ .Version }}'
211
+
212
+ # Footer for the release body.
213
+ #
214
+ # Templates: allowed.
208
215
footer : |
209
216
**Full Changelog**: [https://github.com/sixafter/nanoid-cli/tree/main/CHANGELOG/CHANGELOG-1.x](https://github.com/sixafter/nanoid-cli/tree/main/CHANGELOG/CHANGELOG-1.x.md)
210
217
@@ -218,8 +225,8 @@ brews:
218
225
219
226
# IDs of the archives to use.
220
227
# Empty means all IDs.
221
- ids :
222
- - tar
228
+ # ids:
229
+ # - tar
223
230
224
231
# GOARM to specify which 32-bit arm version to use if there are multiple
225
232
# versions from the build section. Brew formulas support only one 32-bit
@@ -232,7 +239,7 @@ brews:
232
239
# versions from the build section.
233
240
#
234
241
# Default: v1.
235
- goamd64 : v1
242
+ # goamd64: v1
236
243
237
244
# Templates: allowed.
238
245
commit_msg_template : " Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
0 commit comments