Publish to MCP Registry #26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish to MCP Registry | |
| on: | |
| repository_dispatch: | |
| types: [docker-published] # Triggered after Docker image is published | |
| workflow_dispatch: # Allow manual triggering | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write # Required for OIDC authentication | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "stable" | |
| - name: Fetch tags | |
| run: | | |
| if [[ "${{ github.event_name }}" == "repository_dispatch" ]]; then | |
| echo "Triggered by docker-published event for tag: ${{ github.event.client_payload.tag }}" | |
| elif [[ "${{ github.ref_type }}" != "tag" ]]; then | |
| git fetch --tags | |
| else | |
| echo "Skipping tag fetch - already on tag ${{ github.ref_name }}" | |
| fi | |
| - name: Wait for Docker image | |
| run: | | |
| if [[ "${{ github.event_name }}" == "repository_dispatch" ]]; then | |
| TAG="${{ github.event.client_payload.tag }}" | |
| elif [[ "${{ github.ref_type }}" == "tag" ]]; then | |
| TAG="${{ github.ref_name }}" | |
| else | |
| TAG=$(git tag --sort=-version:refname | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+' | head -n1) | |
| fi | |
| IMAGE="ghcr.io/github/github-mcp-server:$TAG" | |
| for i in {1..6}; do | |
| if docker manifest inspect "$IMAGE" &>/dev/null; then | |
| echo "✅ Docker image ready: $TAG" | |
| break | |
| fi | |
| [ $i -eq 6 ] && { echo "❌ Timeout waiting for $TAG after 3 minutes"; exit 1; } | |
| echo "⏳ Waiting for Docker image ($i/6)..." | |
| sleep 30 | |
| done | |
| - name: Install MCP Publisher | |
| run: | | |
| git clone --quiet https://github.com/modelcontextprotocol/registry publisher-repo | |
| cd publisher-repo && make publisher > /dev/null && cd .. | |
| cp publisher-repo/bin/mcp-publisher . && chmod +x mcp-publisher | |
| - name: Update server.json version | |
| run: | | |
| if [[ "${{ github.event_name }}" == "repository_dispatch" ]]; then | |
| TAG_VERSION=$(echo "${{ github.event.client_payload.tag }}" | sed 's/^v//') | |
| echo "Using tag from dispatch: ${{ github.event.client_payload.tag }}" | |
| elif [[ "${{ github.ref_type }}" == "tag" ]]; then | |
| TAG_VERSION=$(echo "${{ github.ref_name }}" | sed 's/^v//') | |
| else | |
| LATEST_TAG=$(git tag --sort=-version:refname | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+(-.*)?$' | head -n 1) | |
| [ -z "$LATEST_TAG" ] && { echo "No release tag found"; exit 1; } | |
| TAG_VERSION=$(echo "$LATEST_TAG" | sed 's/^v//') | |
| echo "Using latest tag: $LATEST_TAG" | |
| fi | |
| sed -i "s/\${VERSION}/$TAG_VERSION/g" server.json | |
| echo "Version: $TAG_VERSION" | |
| - name: Validate configuration | |
| 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 | |
| - name: Publish to MCP Registry | |
| run: ./mcp-publisher publish |