Skip to content

Merge pull request #13 from tscircuit/feat/manufacturer-part-number #43

Merge pull request #13 from tscircuit/feat/manufacturer-part-number

Merge pull request #13 from tscircuit/feat/manufacturer-part-number #43

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/
- run: npm install -g pver
- run: npm ci
- run: pver release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}