From e553e6208319c4c35ec44af74bbbde57c832ee73 Mon Sep 17 00:00:00 2001 From: Kohei Futatsuka Date: Thu, 9 Feb 2023 11:13:04 +0900 Subject: [PATCH] use npm --- .github/workflows/npm_publish.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/npm_publish.yml b/.github/workflows/npm_publish.yml index 72d5dbb..05c9267 100644 --- a/.github/workflows/npm_publish.yml +++ b/.github/workflows/npm_publish.yml @@ -22,10 +22,9 @@ jobs: registry-url: "https://registry.npmjs.org" - name: Install dependencies, Build and Publish run: | - npm install pnpm - pnpm install - pnpm build - pnpm publish --access public + npm install + npm run build + npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} VERSION: ${{ github.sha }}