Howdy!
As in the description, there is an existing issue in the proper repository https://github.com/golangci/homebrew-tap/issues/7 (here only to emphasize 馃槈)
It makes harder to maintain the same newest version of this amazing tool 馃帀 in CI pipelines and programmers machines.
Cheers!
v1.23.8 is the last stable release, as with v1.24.0 there are OOM issues. See #994
Oh thanks for the answer, I was misled by readme which points to 1.24.0
Looks like a bug in @goreleaserbot, but I have no idea how to fix that.
You just need to run goreleaser as a user who has commit access to the https://github.com/golangci/homebrew-tap repository.
brew install goreleaser/tap/goreleaserGITHUB_TOKEN environment variable, which should contain a valid GitHub token with the repo scope. It will be used to deploy releases to your GitHub repository. You can create a token here for GitHub.$ export GITHUB_TOKEN='YOUR_GH_TOKEN'
$ git tag -a v1.24.1 -m "Brew Tap Release"
$ git push origin v1.24.1
$ goreleaser
goreleaserbot is the author name that is configured to be associated with the commit in the homebrew-tap repository. It does not run automatically without a maintainer manually invoking it, unless you use the github action which has not been set up yet.
Should be fixed with new release.