Skip to content

v1.0.1

v1.0.1 #11

Workflow file for this run

name: 'Publish to NPM'
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: 'actions/checkout@v1'
- uses: 'actions/setup-node@v1'
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: 'npm publish --access=public'
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}