@@ -62,91 +62,22 @@ changelog:
62
62
63
63
brews :
64
64
- name : " {{ .ProjectName }}"
65
-
66
- # IDs of the archives to use.
67
- # Empty means all IDs.
68
- ids : []
69
-
70
- # Headers to include in the `url` stanza.
71
- # This can be a more modern alternative to `download_strategy` in some
72
- # cases.
73
- #
74
- # Since: v1.25
75
- url_headers :
76
- - " Accept: application/octet-stream"
77
- - ' Authorization: bearer #{ENV["HOMEBREW_GITHUB_API_TOKEN"]}'
78
-
79
- # Allows you to set a custom download strategy. Note that you'll need
80
- # to implement the strategy and add it to your tap repository.
81
- # Example: https://docs.brew.sh/Formula-Cookbook#specifying-the-download-strategy-explicitly
82
- download_strategy : CurlDownloadStrategy
83
-
84
- # Allows you to add a custom require_relative at the top of the formula
85
- # template.
86
- custom_require : custom_download_strategy
87
-
88
- # Git author used to commit to the repository.
89
- commit_author :
90
- name : goreleaserbot
91
-
92
-
93
- # The project name and current git tag are used in the format string.
94
- #
95
- # Templates: allowed
96
- commit_msg_template : " Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
97
-
98
- # Directory inside the repository to put the formula.
99
- directory : Formula
100
-
101
- # Caveats for the user of your binary.
102
- caveats : " How to use this binary"
103
-
104
- # Your app's homepage.
105
- homepage : " https://github.com/jdoiro3/DaGit"
106
-
107
- # Your app's description.
108
- #
109
- # Templates: allowed
110
- description : " Software to create fast and easy drum rolls."
111
-
112
- # SPDX identifier of your app's license.
113
- license : " MIT"
114
-
115
- # Setting this will prevent goreleaser to actually try to commit the updated
116
- # formula - instead, the formula file will be stored on the dist directory
117
- # only, leaving the responsibility of publishing it to the user.
118
- # If set to auto, the release will not be uploaded to the homebrew tap
119
- # in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
120
- #
121
- # Templates: allowed
122
- skip_upload : auto
123
-
124
- # Repository to push the generated files to.
125
65
repository :
126
- # Repository owner.
127
- #
128
- # Templates: allowed
129
66
owner : jdoiro3
130
-
131
- # Repository name.
132
- #
133
- # Templates: allowed
134
- name : DaGit
135
-
136
- # Optionally a branch can be provided.
137
- #
138
- # Default: default repository branch
139
- # Templates: allowed
140
- branch : main
141
-
142
- # Optionally a token can be provided, if it differs from the token
143
- # provided to GoReleaser
144
- # Templates: allowed
145
- token : " {{ .Env.GITHUB_PERSONAL_AUTH_TOKEN }}"
67
+ name : homebrew-dagit
68
+ directory : Formula
69
+ goarm : " 7"
70
+ homepage : https://github.com/jdoiro3/dagit
71
+ description : Live DAG visual of Git's internals
72
+ license : MIT
73
+ dependencies :
74
+ - name : go
75
+ type : optional
76
+ - name : git
146
77
147
78
release :
148
79
# Repo in which the release will be created.
149
80
# Default is extracted from the origin remote URL or empty if its private hosted.
150
81
github :
151
82
owner : jdoiro3
152
- name : DaGit
83
+ name : dagit
0 commit comments