Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/registry-releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ jobs:
go-version: "stable"

- name: Fetch tags
run: git fetch --tags
run: |
if [[ "${{ github.ref_type }}" != "tag" ]]; then
git fetch --tags
else
echo "Skipping tag fetch - already on tag ${{ github.ref_name }}"
fi

- name: Install MCP Publisher
run: |
Expand All @@ -47,6 +52,11 @@ jobs:
run: |
python3 -m json.tool server.json > /dev/null && echo "Configuration valid" || exit 1

- name: Display final server.json
run: |
echo "Final server.json contents:"
cat server.json

- name: Login to MCP Registry (OIDC)
run: ./mcp-publisher login github-oidc

Expand Down
Loading