release: hex-line v1.27.0, hex-ssh v1.6.0, hex-graph v0.15.0 #32
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: Publish hex-graph-mcp | |
| on: | |
| push: | |
| tags: ['hex-graph-v*'] | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Install dependencies | |
| run: cd mcp && npm install --ignore-scripts | |
| - name: Build bundle | |
| run: cd mcp/hex-graph-mcp && npm run build | |
| - name: Publish to npm | |
| run: cd mcp/hex-graph-mcp && npm publish --provenance --access public | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - 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: Sync server.json version | |
| run: | | |
| VERSION=${GITHUB_REF#refs/tags/hex-graph-v} | |
| cd mcp/hex-graph-mcp | |
| jq --arg v "$VERSION" '.version = $v | .packages[0].version = $v' server.json > server.tmp && mv server.tmp server.json | |
| - name: Authenticate to MCP Registry | |
| run: ./mcp-publisher login github-oidc | |
| - name: Publish to MCP Registry | |
| run: cd mcp/hex-graph-mcp && ../../mcp-publisher publish |