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 e640ab3 commit 94d1d11Copy full SHA for 94d1d11
1 file changed
.github/workflows/publish-mcp-registry.yml
@@ -23,7 +23,10 @@ jobs:
23
node-version-file: .nvmrc
24
25
- name: Install mcp-publisher
26
- run: npm install -g mcp-publisher
+ run: |
27
+ curl -sSL https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_linux_amd64.tar.gz \
28
+ | tar -xz mcp-publisher
29
+ sudo mv mcp-publisher /usr/local/bin/mcp-publisher
30
31
- name: Sync server.json version
32
run: |
@@ -37,4 +40,4 @@ jobs:
37
40
"
38
41
39
42
- name: Publish to MCP Registry
- run: mcp-publisher publish --token ${{ secrets.GITHUB_TOKEN }}
43
+ run: mcp-publisher publish --token ${{ secrets.GITHUB_TOKEN }}
0 commit comments