Skip to content

chore(main): release 0.1.5 (#11) #5

chore(main): release 0.1.5 (#11)

chore(main): release 0.1.5 (#11) #5

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*"
jobs:
publish:
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: 24
cache: "pnpm"
registry-url: https://registry.npmjs.org
- run: pnpm install --frozen-lockfile
- run: pnpm run typecheck
- run: pnpm run test
- run: pnpm run build
- name: Publish to NPM
run: pnpm publish --provenance --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.ONECLI_NPM_TOKEN }}