Skip to content
This repository was archived by the owner on Apr 28, 2026. It is now read-only.

DevAP v0.5.1

DevAP v0.5.1 #8

Workflow file for this run

name: Publish to npm
on:
release:
types: [published]
jobs:
ci:
uses: ./.github/workflows/ci.yml
publish:
name: Publish to npm
needs: ci
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
registry-url: "https://registry.npmjs.org"
- run: pnpm install --frozen-lockfile
- run: pnpm build
- name: Publish dev-autopilot
working-directory: packages/cli
run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}