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 35b0da2 commit 371b9aeCopy full SHA for 371b9ae
.github/workflows/registry-releaser.yml
@@ -22,7 +22,12 @@ jobs:
22
go-version: "stable"
23
24
- name: Fetch tags
25
- run: git fetch --tags
+ run: |
26
+ if [[ "${{ github.ref_type }}" != "tag" ]]; then
27
+ git fetch --tags
28
+ else
29
+ echo "Skipping tag fetch - already on tag ${{ github.ref_name }}"
30
+ fi
31
32
- name: Install MCP Publisher
33
run: |
@@ -47,6 +52,11 @@ jobs:
47
52
48
53
python3 -m json.tool server.json > /dev/null && echo "Configuration valid" || exit 1
49
54
55
+ - name: Display final server.json
56
57
+ echo "Final server.json contents:"
58
+ cat server.json
59
+
50
60
- name: Login to MCP Registry (OIDC)
51
61
run: ./mcp-publisher login github-oidc
62
0 commit comments