From 8fb308cdba93e7346aa23a1078977b4f81868661 Mon Sep 17 00:00:00 2001 From: JetsadaWijit <56456776+JetsadaWijit@users.noreply.github.com> Date: Thu, 14 Dec 2023 08:35:02 +0700 Subject: [PATCH] fix git action --- .github/workflows/npm-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 1b18e97..a6bd5e0 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 16 - - run: npm ci + - run: npm install - run: npm test publish-npm: @@ -28,7 +28,7 @@ jobs: with: node-version: 16 registry-url: https://registry.npmjs.org/ - - run: npm ci + - run: npm install - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}