Skip to content

0.6.0

0.6.0 #15

Workflow file for this run

name: Release
on:
release:
types: [ published ]
jobs:
npmjs:
name: npmjs.org
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm config set git-tag-version=false
- run: npm version ${{ github.event.release.tag_name }}
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}