Skip to content

v3.0.1

v3.0.1 #5

Workflow file for this run

name: Publish Package to npmjs
on:
workflow_dispatch:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: enable corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- run: yarn
- run: yarn publish -y
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}