Skip to content

Commit 8cc7438

Browse files
foxishclaude
andcommitted
Fix goreleaser: restore homebrew Formula tap and expand MCP binary list
- Switch homebrew_casks back to brews (Formula in Formula/ dir) to match pre-v2 tap behavior with bin.install "signadot" - Add github auth to MCP registry publisher to fix anonymous token 404 - Expand MCP packages from single template to explicit entries for all four platforms (linux/darwin x amd64/arm64) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 706a78e commit 8cc7438

1 file changed

Lines changed: 19 additions & 7 deletions

File tree

goreleaser.yaml

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,19 @@ checksum:
3131
name_template: checksums.txt
3232
snapshot:
3333
version_template: "{{ .Version }}-{{ .ShortCommit }}"
34-
homebrew_casks:
34+
brews:
3535
- name: signadot-cli
3636
description: Command-line interface for Signadot
3737
homepage: https://signadot.com
38-
directory: Casks
38+
directory: Formula
3939
commit_author:
4040
name: foxish
4141
email: info@signadot.com
4242
repository:
4343
owner: signadot
4444
name: homebrew-tap
45-
ids:
46-
- signadot
47-
binaries:
48-
- signadot
45+
install: |-
46+
bin.install "signadot"
4947
dockers:
5048
-
5149
use: buildx
@@ -95,11 +93,25 @@ mcp:
9593
title: Signadot MCP Server
9694
description: Connect to Signadot to manage ephemeral environments and route traffic to local services.
9795
homepage: https://signadot.com
96+
auth:
97+
type: github
9898
repository:
9999
url: https://github.com/signadot/cli
100100
source: github
101101
packages:
102102
- registry_type: mcpb
103-
identifier: "https://github.com/signadot/cli/releases/download/v{{ .Version }}/{{ .ProjectName }}_mcp_{{ .Os }}_{{ .Arch }}.tar.gz"
103+
identifier: "https://github.com/signadot/cli/releases/download/v{{ .Version }}/{{ .ProjectName }}_mcp_linux_amd64.tar.gz"
104+
transport:
105+
type: stdio
106+
- registry_type: mcpb
107+
identifier: "https://github.com/signadot/cli/releases/download/v{{ .Version }}/{{ .ProjectName }}_mcp_linux_arm64.tar.gz"
108+
transport:
109+
type: stdio
110+
- registry_type: mcpb
111+
identifier: "https://github.com/signadot/cli/releases/download/v{{ .Version }}/{{ .ProjectName }}_mcp_darwin_amd64.tar.gz"
112+
transport:
113+
type: stdio
114+
- registry_type: mcpb
115+
identifier: "https://github.com/signadot/cli/releases/download/v{{ .Version }}/{{ .ProjectName }}_mcp_darwin_arm64.tar.gz"
104116
transport:
105117
type: stdio

0 commit comments

Comments
 (0)