Skip to content

change to dev

change to dev #12

Workflow file for this run

---
# Publishing all NPM packages to the npm registry when the version number changes
# See https://github.com/marketplace/actions/npm-publish for more information
name: Publish package to npmjs
on:
push:
branches: dev
jobs:
# Publish the lib to the NPM registry
publish-typescript-bindings:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_PUBLISH_TOKEN }}
access: 'public'