Skip to content

0.5.9

0.5.9 #15

Workflow file for this run

# Release a package at npmjs on version-tagged commits
name: Release
on:
push:
tags:
- v*
jobs:
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-node@v1
with:
node-version: 14.x
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}