Skip to content

chore(mcp): bump version to 0.1.1 #1

chore(mcp): bump version to 0.1.1

chore(mcp): bump version to 0.1.1 #1

Workflow file for this run

name: Publish MCP Server
on:
push:
tags: ["github-tracker-mcp@*"]
jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: 24
registry-url: "https://registry.npmjs.org"
- run: pnpm install --frozen-lockfile
- run: pnpm --filter github-tracker-mcp run typecheck
- run: pnpm --filter github-tracker-mcp run build
- run: pnpm --filter github-tracker-mcp test
- run: cd mcp && pnpm publish --access public --no-git-checks
create-release:
runs-on: ubuntu-latest
needs: build-and-publish
permissions:
contents: write
steps:
- name: Create GitHub Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create "${{ github.ref_name }}" \
--repo "${{ github.repository }}" \
--title "MCP Server ${{ github.ref_name }}" \
--generate-notes \
--notes $'## Install\n```bash\nnpx github-tracker-mcp@latest\n```\nSee [npm package](https://www.npmjs.com/package/github-tracker-mcp) for full documentation.'