From 43d151b8d16f8cf4dcc50927e3fc8d1d902c3b1b Mon Sep 17 00:00:00 2001 From: Allan Niles Date: Tue, 13 Feb 2024 08:44:19 -0700 Subject: [PATCH] Fix build error in npm.yml (#776) --- .github/workflows/npm.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml index c42a797..690b8d1 100644 --- a/.github/workflows/npm.yml +++ b/.github/workflows/npm.yml @@ -13,7 +13,8 @@ jobs: with: node-version: '20.x' registry-url: 'https://registry.npmjs.org' + - run: npm i - run: npm ci - - run: npm publish + - run: npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}