Skip to content

1.3.2

1.3.2 #18

Workflow file for this run

name: Publish Node.js Package
on:
release:
types: [created]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: yarn
- run: yarn test
- run: yarn compile
- run:
npm version --no-workspaces-update --no-git-tag-version
${{github.ref_name}}
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}