Skip to content

feat: add mcpName and update server.json for MCP Registry publishing #4

feat: add mcpName and update server.json for MCP Registry publishing

feat: add mcpName and update server.json for MCP Registry publishing #4

Workflow file for this run

name: Publish @aarna-ai/mcp-server-atv
on:
push:
tags:
- "mcp-server-v*"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build package
run: pnpm --filter @aarna-ai/mcp-server-atv build
- name: Publish to npm
run: pnpm --filter @aarna-ai/mcp-server-atv publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}