Skip to content

chore(main): Release v0.1.32 (#329) #42

chore(main): Release v0.1.32 (#329)

chore(main): Release v0.1.32 (#329) #42

Workflow file for this run

name: publish
on:
push:
tags:
- "v*.*.*"
permissions:
id-token: write # Required for OIDC
contents: read
jobs:
publish:
name: Publish to npm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Build code
run: |
npm run build
- run: npm publish --access public