Merge pull request #58 from jkawamoto/bump #9
Workflow file for this run
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: Release | |
| on: | |
| push: | |
| tags: | |
| - "v*.*.*" | |
| permissions: | |
| id-token: write | |
| contents: write | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create package artifact | |
| run: npx @anthropic-ai/mcpb pack | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: "*.mcpb" | |
| - name: Update fileSha256 in server.json | |
| run: | | |
| SHA256_HASH=$(sha256sum "mcp-youtube-transcript.mcpb" | awk '{print $1}') | |
| jq --arg hash "$SHA256_HASH" '.packages[0].fileSha256 = $hash' server.json > server_tmp.json | |
| mv server_tmp.json server.json | |
| cat server.json | |
| - name: Install MCP Publisher | |
| run: | | |
| curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_linux_amd64.tar.gz" | tar xz mcp-publisher | |
| - name: Login to MCP Registry | |
| run: ./mcp-publisher login github-oidc | |
| - name: Publish to MCP Registry | |
| run: ./mcp-publisher publish |