Skip to content

Commit db42e95

Browse files
committed
chore: simplify .goreleaser.yaml configuration
- Removed unused variables from the `.goreleaser.yaml` configuration. - Updated the `brews` section to directly specify values instead of using variables for `owner`, `commit_author`, `homepage`, and `description`. Signed-off-by: codiing-hui <wecoding@yeah.net>
1 parent 0972bf0 commit db42e95

File tree

1 file changed

+5
-17
lines changed

1 file changed

+5
-17
lines changed

.goreleaser.yaml

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,6 @@
88

99
version: 2
1010

11-
variables:
12-
main: ""
13-
aur_project_name: ""
14-
15-
homepage: "https://github.com/coding-hui/ai-terminal"
16-
brew_owner: coding-hui
17-
description: "AI driven development in your terminal"
18-
github_url: "https://github.com/coding-hui/ai-terminal"
19-
maintainer: "Coding Hui <wecoding@yeah.net>"
20-
brew_commit_author_name: "Coding Hui"
21-
brew_commit_author_email: "wecoding@yeah.net"
22-
2311
before:
2412
hooks:
2513
# You may remove this if you don't use go modules.
@@ -115,14 +103,14 @@ report_sizes: true
115103

116104
brews:
117105
- repository:
118-
owner: "{{ .Var.brew_owner }}"
106+
owner: coding-hui
119107
name: homebrew-tap
120108
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
121109
commit_author:
122-
name: "{{ .Var.brew_commit_author_name }}"
123-
email: "{{ .Var.brew_commit_author_email }}"
124-
homepage: "{{ .Var.homepage }}"
125-
description: "{{ .Var.description }}"
110+
name: "Coding Hui"
111+
email: wecoding@yeah.net
112+
homepage: https://github.com/coding-hui/ai-terminal
113+
description: "AI driven development in your terminal"
126114
extra_install: |-
127115
bash_completion.install "completions/{{ .ProjectName }}.bash" => "{{ .ProjectName }}"
128116
zsh_completion.install "completions/{{ .ProjectName }}.zsh" => "_{{ .ProjectName }}"

0 commit comments

Comments
 (0)