From c7c3bfb70cfff8dc6f7a36196bfee76b14ee90d4 Mon Sep 17 00:00:00 2001 From: Mihir Kumar Date: Thu, 21 Oct 2021 12:37:13 +0530 Subject: [PATCH] ci(s3-bucket-download): :green_heart: npm publish fixes --- .github/workflows/npm-publish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 3501edb..bde15fc 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -16,8 +16,7 @@ jobs: - uses: actions/setup-node@v1 with: node-version: 12 - - run: npm ci - # - run: npm test + - run: yarn install --frozen-lockfile publish-npm: needs: build @@ -28,7 +27,7 @@ jobs: with: node-version: 12 registry-url: https://registry.npmjs.org/ - - run: npm ci + - run: yarn install --frozen-lockfile - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}