Skip to content

Merge pull request #23 from tscircuit/refactor/function-name-update #6

Merge pull request #23 from tscircuit/refactor/function-name-update

Merge pull request #23 from tscircuit/refactor/function-name-update #6

Workflow file for this run

# Created using @tscircuit/plop (npm install -g @tscircuit/plop)
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/
- run: npm install -g pver
- run: npm ci
- run: pver release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}