Beamlit MCP Server

Official
name: Release on: push: tags: - "*" jobs: npm-publish: name: Upload to NPM runs-on: ubuntu-latest environment: release steps: - uses: actions/checkout@v4 name: Checkout with: fetch-tags: true fetch-depth: 0 - name: Install pnpm uses: pnpm/action-setup@v4 with: version: 10 - name: Install Node.js uses: actions/setup-node@v4 with: node-version: 20 registry-url: "https://registry.npmjs.org" - name: Set version run: | VERSION="${{ github.ref_name }}" VERSION="${VERSION#v}" echo "Setting version to $VERSION" pnpm version $VERSION - name: Publish to NPM env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: | pnpm i pnpm build pnpm publish --access public --no-git-checks