From 94b40014cc97444f312c150c9ce034240ea784ae Mon Sep 17 00:00:00 2001 From: Deivid Soto Date: Mon, 30 Mar 2026 14:38:36 +0200 Subject: [PATCH] fix(release): disable homebrew tap (needs PAT, not GITHUB_TOKEN) --- .goreleaser.yml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index d9f41fa..44656cd 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -37,13 +37,16 @@ changelog: - "^test:" - "^chore:" -brews: - - repository: - owner: torrentclaw - name: homebrew-tap - name: unarr - homepage: https://github.com/torrentclaw/unarr - description: "unarr — replaces the entire *arr stack" - license: MIT - install: | - bin.install "unarr" +# Homebrew tap — requires PAT with repo scope (not GITHUB_TOKEN) +# Enable when torrentclaw/homebrew-tap PAT is configured as HOMEBREW_TAP_TOKEN +# brews: +# - repository: +# owner: torrentclaw +# name: homebrew-tap +# token: "{{ .Env.HOMEBREW_TAP_TOKEN }}" +# name: unarr +# homepage: https://github.com/torrentclaw/unarr +# description: "unarr — replaces the entire *arr stack" +# license: MIT +# install: | +# bin.install "unarr"