From 451fbe16408444a12f7ad858c24837aadc22a5ca Mon Sep 17 00:00:00 2001 From: kjuulh Date: Tue, 24 Mar 2026 10:33:37 +0100 Subject: [PATCH] feat: switch homebrew distribution from cask to formula Replace homebrew_casks with brews in goreleaser config to use a standard Formula instead of a Cask, avoiding macOS quarantine. --- .goreleaser.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index ee6cb9a..4f33040 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -46,15 +46,15 @@ release: name_template: "v{{ .Version }}" mode: keep-existing -homebrew_casks: +brews: - name: gitnow - binaries: - - gitnow repository: owner: kjuulh name: homebrew-tap token: "{{ .Env.RELEASE_TOKEN }}" - url: - template: "https://git.kjuulh.io/kjuulh/gitnow/releases/download/{{ .Tag }}/{{ .ArtifactName }}" + directory: Formula + url_template: "https://git.kjuulh.io/kjuulh/gitnow/releases/download/{{ .Tag }}/{{ .ArtifactName }}" homepage: "https://gitnow-client.prod.kjuulh.app" description: "Git Now is a utility for easily navigating git projects from common upstream providers." + install: | + bin.install "gitnow"