Skip to content

Commit 759c59e

Browse files
committed
Adding debugging
1 parent 0f6993c commit 759c59e

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/registry-releaser.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,17 @@ jobs:
4646
run: |
4747
echo "Final server.json contents:"
4848
cat server.json
49+
echo ""
50+
echo "JSON validation check:"
51+
python3 -m json.tool server.json > /dev/null && echo "✅ Valid JSON" || echo "❌ Invalid JSON"
4952
5053
- name: Login to MCP Registry
5154
run: ./mcp-publisher login github-oidc
5255

53-
- name: Publish to MCP Registry
54-
run: ./mcp-publisher publish
56+
- name: Publish to MCP Registry (with verbose output)
57+
run: |
58+
echo "Publishing with verbose output..."
59+
./mcp-publisher publish --verbose || true
60+
echo ""
61+
echo "Checking if mcp-publisher has other flags..."
62+
./mcp-publisher publish --help || true

server.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"registryBaseUrl": "https://ghcr.io",
1515
"identifier": "ghcr.io/github/github-mcp-server",
1616
"version": "${VERSION}",
17-
"runtimeHint": "docker",
1817
"transport": {
1918
"type": "stdio"
2019
},

0 commit comments

Comments
 (0)