Skip to content

Commit 4b1ed5c

Browse files
committed
Disable MCP Registry publishing (investigating duplicate version issue)
- Consistently getting 'duplicate version' error from MCP Registry - Commenting out MCP steps to prove NPM + GitHub Release flow works perfectly - Will investigate MCP Registry versioning behavior separately
1 parent 001dc2f commit 4b1ed5c

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

.github/workflows/release.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,20 @@ jobs:
4949
env:
5050
NODE_AUTH_TOKEN: ${{ secrets.NPMTOKEN }}
5151

52-
# Step 2: Publish to MCP Registry (optional - won't fail workflow if version exists)
53-
- name: Install MCP Publisher
54-
continue-on-error: true
55-
run: |
56-
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
57-
58-
- name: Login to MCP Registry
59-
continue-on-error: true
60-
run: ./mcp-publisher login github-oidc
61-
62-
- name: Publish to MCP Registry
63-
continue-on-error: true
64-
run: ./mcp-publisher publish
52+
# Step 2: Publish to MCP Registry - DISABLED (investigating duplicate version issues)
53+
# TODO: Re-enable after investigating MCP Registry versioning behavior
54+
# - name: Install MCP Publisher
55+
# continue-on-error: true
56+
# run: |
57+
# curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
58+
#
59+
# - name: Login to MCP Registry
60+
# continue-on-error: true
61+
# run: ./mcp-publisher login github-oidc
62+
#
63+
# - name: Publish to MCP Registry
64+
# continue-on-error: true
65+
# run: ./mcp-publisher publish
6566

6667
# Step 3: Create GitHub Release
6768
- name: Create GitHub Release

0 commit comments

Comments
 (0)