Skip to content

v0.0.26

v0.0.26 #26

Workflow file for this run

name: Publish Release
on:
release:
types:
- published
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Setup npm to publish to npmjs
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}