Skip to content

v3.0.0-alpha.1

v3.0.0-alpha.1 #27

Workflow file for this run

name: Node.js Package
on:
release:
types: [created]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.1.1
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- run: npm install -g yarn
- run: yarn
- run: npm i -g npm@8.19.2
- run: npm --version && npm publish --workspaces --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}