@@ -40,108 +40,32 @@ changelog:
40
40
41
41
brews :
42
42
-
43
- # Name of the recipe
44
- #
45
- # Default: the project name.
46
- # Templates: allowed.
47
43
name : claude-squad
48
-
49
- # NOTE: make sure the url_template, the token and given repo (github or
50
- # gitlab) owner and name are from the same kind.
51
- # We will probably unify this in the next major version like it is
52
- # done with scoop.
53
-
54
- # URL which is determined by the given Token (github, gitlab or gitea).
55
- #
56
- # Default depends on the client.
57
- # Templates: allowed.
58
44
url_template : " https://github.com/smtg-ai/claude-squad/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
59
-
60
- # Git author used to commit to the repository.
61
- # Templates: allowed.
62
45
commit_author :
63
46
name : goreleaserbot
64
47
65
-
66
- # The project name and current git tag are used in the format string.
67
- #
68
- # Templates: allowed.
69
48
commit_msg_template : " Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
70
-
71
- # Directory inside the repository to put the formula.
72
49
directory : Formula
73
-
74
- # Your app's homepage.
75
- #
76
- # Default: inferred from global metadata.
77
50
homepage : " https://smtg-ai.github.io/claude-squad/"
78
-
79
- # Your app's description.
80
- #
81
- # Templates: allowed.
82
- # Default: inferred from global metadata.
83
51
description : " Manage multiple AI agents like Claude Code, Aider, and more. 10x your productivity."
84
-
85
- # SPDX identifier of your app's license.
86
- #
87
- # Default: inferred from global metadata.
88
52
license : " AGPL-3.0"
89
-
90
- # Setting this will prevent goreleaser to actually try to commit the updated
91
- # formula - instead, the formula file will be stored on the dist directory
92
- # only, leaving the responsibility of publishing it to the user.
93
- # If set to auto, the release will not be uploaded to the homebrew tap
94
- # in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
95
- #
96
- # Templates: allowed.
97
53
skip_upload : false
98
-
99
- # Packages your package depends on.
100
54
dependencies :
101
55
- name : tmux
102
56
- name : gh
103
57
type : optional
104
-
105
- # So you can `brew test` your formula.
106
- #
107
- # Template: allowed
108
58
test : |
109
59
system "#{bin}/cs version"
110
- # ...
111
-
112
- # Repository to push the generated files to.
113
60
repository :
114
- # Repository owner.
115
- #
116
- # Templates: allowed.
117
61
owner : smtg-ai
118
-
119
- # Repository name.
120
- #
121
- # Templates: allowed.
122
- name : homebrew-claude-squad
123
-
124
- # Optionally a branch can be provided.
125
- #
126
- # Default: default repository branch.
127
- # Templates: allowed.
62
+ name : homebrew-smtg-ai
128
63
branch : brew-tap
129
-
130
- # Sets up pull request creation instead of just pushing to the given branch.
131
- # Make sure the 'branch' property is different from base before enabling
132
- # it.
133
- #
134
- # This might require a personal access token.
64
+ token : " {{ .Env.HOMEBREW_REPO_TOKEN }}"
135
65
pull_request :
136
- # Whether to enable it or not.
137
66
enabled : true
138
-
139
- # Whether to open the PR as a draft or not.
140
67
draft : true
141
-
142
- # Base can also be another repository, in which case the owner and name
143
- # above will be used as HEAD, allowing cross-repository pull requests.
144
68
base :
145
69
owner : smtg-ai
146
- name : homebrew-claude-squad
147
- branch : main
70
+ name : homebrew-smtg-ai
71
+ branch : main
0 commit comments