Skip to content

Publish to NPM

Publish to NPM #10

Workflow file for this run

name: Publish to NPM
on: [workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.11.1
cache: npm # or pnpm / ya
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
env:
NODE_ENV: production
- name: Set public publishing
run: npm config set access public
- name: Publish package on NPM 📦
run: npm publish --ws
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_ENV: production