Skip to content

Deploy package

Deploy package #18

Workflow file for this run

name: Deploy package
on: workflow_dispatch
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Publish
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
registry-url: 'https://registry.npmjs.org'
- run: pnpm install
- run: pnpm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}