Skip to content

0.1.3

0.1.3 #4

Workflow file for this run

name: release
on:
push:
tags:
- "*"
jobs:
npm:
name: Publish to NPM
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}