Skip to content

fix: remove packagemanager field #3

fix: remove packagemanager field

fix: remove packagemanager field #3

Workflow file for this run

name: Publish to NPM registry
on:
push:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
registry-url: https://registry.npmjs.org/
- name: Setup pnpm and install dependencies
uses: pnpm/action-setup@v4
with:
version: latest
run_install: true
- name: Publish package
run: pnpm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}