Skip to content

Commit b694051

Browse files
committed
fix: goreleaser
1 parent d083876 commit b694051

File tree

1 file changed

+40
-3
lines changed

1 file changed

+40
-3
lines changed

.goreleaser.yaml

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ builds:
1313
- linux
1414
- windows
1515
- darwin
16+
ignore:
17+
- goarch: 386
1618
archives:
1719
- replacements:
1820
darwin: Darwin
@@ -21,12 +23,47 @@ archives:
2123
386: i386
2224
amd64: x86_64
2325
checksum:
24-
name_template: 'checksums.txt'
26+
name_template: "checksums.txt"
2527
snapshot:
2628
name_template: "{{ incpatch .Version }}-next"
2729
changelog:
2830
sort: asc
2931
filters:
3032
exclude:
31-
- '^docs:'
32-
- '^test:'
33+
- "^docs:"
34+
- "^test:"
35+
brews:
36+
- # Name template of the recipe
37+
# Default to project name
38+
name: protoconf-terraform
39+
40+
tap:
41+
owner: protoconf
42+
name: homebrew-tap
43+
44+
token: "{{ .Env.DEPLOY_GITHUB_TOKEN }}"
45+
46+
# Git author used to commit to the repository.
47+
# Defaults are shown.
48+
commit_author:
49+
name: goreleaserbot
50+
email: goreleaser@carlosbecker.com
51+
52+
# The project name and current git tag are used in the format string.
53+
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
54+
55+
# Folder inside the repository to put the formula.
56+
# Default is the root folder.
57+
folder: Formula
58+
59+
# Your app's homepage.
60+
# Default is empty.
61+
homepage: "https://docs.protoconf.sh/"
62+
63+
# Template of your app's description.
64+
# Default is empty.
65+
description: "Terraform integration for protoconf"
66+
67+
# SPDX identifier of your app's license.
68+
# Default is empty.
69+
license: "MIT"

0 commit comments

Comments
 (0)