From 8e1382e79c6612a96a7d95d9b3f023dc238b8b33 Mon Sep 17 00:00:00 2001 From: Akash Shaw Date: Tue, 13 Feb 2024 21:09:42 +0530 Subject: [PATCH] chore: changing the ENV name and moving the command to yarn --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ce831784..4faebdab 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -22,12 +22,12 @@ jobs: node-version: '20' - name: Install dependencies - run: npm ci + run: yarn install - name: Build packages - run: npm run build + run: yarn build - name: Publish packages run: npx lerna publish from-package --yes env: - NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}