We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 602ce48 commit f99d1bcCopy full SHA for f99d1bc
.github/workflows/build-and-register.yaml
@@ -44,11 +44,13 @@ jobs:
44
45
- name: Install MCP Publisher
46
run: |
47
- git clone https://github.com/modelcontextprotocol/registry publisher-repo
48
- cd publisher-repo && make publisher && cd ..
49
- cp publisher-repo/cmd/publisher/bin/mcp-publisher mcp-publisher
+ cd /tmp
+ curl -Lo mcp-publisher.tar.gz https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_linux_amd64.tar.gz
+ tar -xzf mcp-publisher.tar.gz
50
+ chmod +x mcp-publisher
51
+ mv mcp-publisher /usr/local/bin/mcp-publisher
52
53
- name: Publish to MCP Registry
54
- ./mcp-publisher login github-oidc
- ./mcp-publisher publish
55
+ mcp-publisher login github-oidc
56
+ mcp-publisher publish
0 commit comments