From c9adc80fee895bafb8e6acce8c82d1f660ffc84a Mon Sep 17 00:00:00 2001 From: Androz2091 Date: Sun, 25 Apr 2021 18:00:35 +0200 Subject: [PATCH] :construction_worker: Fix npm publish workflow --- .github/workflows/npm-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index fb09852..2147d77 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -14,8 +14,8 @@ jobs: with: node-version: 12 registry-url: https://registry.npmjs.org/ - - run: yarn install - - run: yarn run build - - run: yarn publish + - run: npm install + - run: npm run build + - run: npm publish --access public env: NODE_AUTH_TOKEN: ${{secrets.npm_token}} \ No newline at end of file