Skip to content

Publish Package

Publish Package #12

Workflow file for this run

name: Node.js Package
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: make install
- run: make build
- run: make publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}