Skip to content

chore: bump version to 1.0.2 #4

chore: bump version to 1.0.2

chore: bump version to 1.0.2 #4

Workflow file for this run

name: Publish to npm
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write # Required for OIDC trusted publishing
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Update npm to latest
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Build CLI
run: npm run build
- name: Publish to npm
run: npm publish --access public