Skip to content

feat: night-shift roadmap — streamable HTTP, cell sync, terminal inte… #5

feat: night-shift roadmap — streamable HTTP, cell sync, terminal inte…

feat: night-shift roadmap — streamable HTTP, cell sync, terminal inte… #5

Workflow file for this run

name: MCP CLI Release
on:
push:
branches:
- main
paths:
- "src/cli/**"
- "src/plutoManagerTypes.ts"
- "src/plutoManager.ts"
- "src/mcp-server-http.ts"
- "packages/advanced-pluto-mcp/**"
workflow_dispatch:
inputs:
dry_run:
description: "Run in dry-run mode"
required: false
type: boolean
default: false
concurrency:
group: semantic-release
cancel-in-progress: false
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
jobs:
mcp-ci:
name: Run MCP CI
uses: ./.github/workflows/mcp-ci.yml
mcp-release:
name: MCP Semantic Release
runs-on: ubuntu-latest
needs: mcp-ci
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ secrets.GH_PAT || secrets.GITHUB_TOKEN }}
persist-credentials: true
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: "22"
cache: "npm"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Build CLI production bundle
run: npm run build:production --workspace=packages/advanced-pluto-mcp
- name: Run semantic-release for MCP CLI
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT || secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
if [ "${{ github.event.inputs.dry_run }}" = "true" ]; then
npx semantic-release --extends ./packages/advanced-pluto-mcp/.releaserc.json --dry-run
else
npx semantic-release --extends ./packages/advanced-pluto-mcp/.releaserc.json
fi