Skip to content

1.13.0

1.13.0 #40

Workflow file for this run

# https://help.github.com/en/actions/language-and-framework-guides/publishing-nodejs-packages
name: Package
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}