Skip to content

Merge pull request #85 from tscircuit/fix-string-pin-numbers #64

Merge pull request #85 from tscircuit/fix-string-pin-numbers

Merge pull request #85 from tscircuit/fix-string-pin-numbers #64

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Use bun
uses: oven-sh/setup-bun@v1
- run: npm install -g pver
- run: bun install --frozen-lockfile
- run: bun run build
- run: pver release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}