Skip to content

Publish to npm

Publish to npm #1

Workflow file for this run

name: Publish to npm
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://registry.npmjs.org/"
- run: npm install
- run: npm publish
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}