@@ -72,9 +72,12 @@ release:
72
72
# Default is `{{.Tag}}`
73
73
name_template : " {{.ProjectName}}-v{{.Version}} {{.Env.USER}}"
74
74
75
+ # brews:
76
+ # We do not use the brew config, which is for taps, not core forumulas.
77
+
75
78
snapcrafts :
76
79
-
77
- name : exercism-cli
80
+ name : exercism
78
81
license : MIT
79
82
# Whether to publish the snap to the snapcraft store.
80
83
# Remember you need to `snapcraft login` first.
@@ -95,110 +98,3 @@ snapcrafts:
95
98
apps :
96
99
exercism :
97
100
plugs : ["home", "network", "removable-media"]
98
-
99
-
100
- # [TODO]
101
- # brews:
102
- # -
103
- # # Name template of the recipe
104
- # # Default to project name
105
- # name: myproject
106
- #
107
- # # IDs of the archives to use.
108
- # # Defaults to all.
109
- # ids:
110
- # - foo
111
- # - bar
112
- #
113
- #
114
- # # NOTE: make sure the url_template, the token and given repo (github or gitlab) owner and name are from the
115
- # # same kind. We will probably unify this in the next major version like it is done with scoop.
116
- #
117
- # # Github repository to push the tap to.
118
- # github:
119
- # owner: github-user
120
- # name: homebrew-tap
121
- #
122
- # # OR Gitlab
123
- # # gitlab:
124
- # # owner: gitlab-user
125
- # # name: homebrew-tap
126
- #
127
- # # Template for the url which is determined by the given Token (github or gitlab)
128
- # # Default for github is "https://github.com/<repo_owner>/<repo_name>/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
129
- # # Default for gitlab is "https://gitlab.com/<repo_owner>/<repo_name>/uploads/{{ .ArtifactUploadHash }}/{{ .ArtifactName }}"
130
- # url_template: "http://github.mycompany.com/foo/bar/releases/{{ .Tag }}/{{ .ArtifactName }}"
131
- #
132
- # # Allows you to set a custom download strategy.
133
- # # Default is empty.
134
- # download_strategy: GitHubPrivateRepositoryReleaseDownloadStrategy
135
- #
136
- # # Allows you to add a custom require_relative at the top of the formula template
137
- # # Default is empty
138
- # custom_require: custom_download_strategy
139
- #
140
- # # Git author used to commit to the repository.
141
- # # Defaults are shown.
142
- # commit_author:
143
- # name: goreleaserbot
144
-
145
- #
146
- # # Folder inside the repository to put the formula.
147
- # # Default is the root folder.
148
- # folder: Formula
149
- #
150
- # # Caveats for the user of your binary.
151
- # # Default is empty.
152
- # caveats: "How to use this binary"
153
- #
154
- # # Your app's homepage.
155
- # # Default is empty.
156
- # homepage: "https://example.com/"
157
- #
158
- # # Your app's description.
159
- # # Default is empty.
160
- # description: "Software to create fast and easy drum rolls."
161
- #
162
- # # Setting this will prevent goreleaser to actually try to commit the updated
163
- # # formula - instead, the formula file will be stored on the dist folder only,
164
- # # leaving the responsibility of publishing it to the user.
165
- # # If set to auto, the release will not be uploaded to the homebrew tap
166
- # # in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
167
- # # Default is false.
168
- # skip_upload: true
169
- #
170
- # # Custom block for brew.
171
- # # Can be used to specify alternate downloads for devel or head releases.
172
- # # Default is empty.
173
- # custom_block: |
174
- # head "https://github.com/some/package.git"
175
- # ...
176
- #
177
- # # Packages your package depends on.
178
- # dependencies:
179
- # - git
180
- # - zsh
181
- #
182
- # # Packages that conflict with your package.
183
- # conflicts:
184
- # - svn
185
- # - bash
186
- #
187
- # # Specify for packages that run as a service.
188
- # # Default is empty.
189
- # plist: |
190
- # <?xml version="1.0" encoding="UTF-8"?>
191
- # ...
192
- #
193
- # # So you can `brew test` your formula.
194
- # # Default is empty.
195
- # test: |
196
- # system "#{bin}/program --version"
197
- # ...
198
- #
199
- # # Custom install script for brew.
200
- # # Default is 'bin.install "program"'.
201
- # install: |
202
- # bin.install "program"
203
- # ...
204
- #
0 commit comments