Skip to content

feat: initial release — OpZero CLI, MCP server, and API client #1

feat: initial release — OpZero CLI, MCP server, and API client

feat: initial release — OpZero CLI, MCP server, and API client #1

Workflow file for this run

name: Release
on:
push:
tags: ['v*']
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- run: bun install
- run: bun run build
- run: |
cd packages/core && npm publish --provenance --access public
cd ../cli && npm publish --provenance --access public
cd ../mcp && npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}