Skip to content

chore: bump version to 13.12.3 #120

chore: bump version to 13.12.3

chore: bump version to 13.12.3 #120

Workflow file for this run

name: Publish to npm
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install Bun (required by smoke:clean-room)
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: npm install --ignore-scripts
- run: npm run build
- run: npm run smoke:clean-room
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}