From 7744bbfa324d3882f91744fabe8cd61a01bc56d6 Mon Sep 17 00:00:00 2001 From: Bhavik Chavda Date: Wed, 29 May 2024 10:22:13 +0530 Subject: [PATCH] Updated param positions for setting config Signed-off-by: Bhavik Chavda --- .github/workflows/publish-prod-packages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-prod-packages.yml b/.github/workflows/publish-prod-packages.yml index 4413cd037..6c89726e2 100644 --- a/.github/workflows/publish-prod-packages.yml +++ b/.github/workflows/publish-prod-packages.yml @@ -46,12 +46,12 @@ jobs: - name: Publish @impler/shared package on NPM 📦 working-directory: libs/shared run: | - npm config set _authToken=${{ secrets.NPM_TOKEN }} --workspaces=false --include-workspace-root + npm config set --workspaces=false --include-workspace-root _authToken=${{ secrets.NPM_TOKEN }} npm publish --access public - name: Publish @impler/react package on NPM 📦 working-directory: packages/react run: | - npm config set _authToken=${{ secrets.NPM_TOKEN }} --workspaces=false --include-workspace-root + npm config set --workspaces=false --include-workspace-root _authToken=${{ secrets.NPM_TOKEN }} npm publish --access public