From e65804dfabdf30f68d577dbd7313490648bd61b9 Mon Sep 17 00:00:00 2001 From: Daniel Van Der Ploeg Date: Tue, 3 Dec 2024 14:41:48 +1030 Subject: [PATCH] fix: set registry with npm --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e9e6029e..d0d6b378 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: git config --global user.name "Automated NPM Release" git config --global user.email "devops+npm-deploy@aligent.com.au" echo "Publishing $PACKAGE @ $VERSION" - yarn config set registry https://registry.npmjs.org/ + npm config set registry https://registry.npmjs.org/ yarn nx publish $PACKAGE --ver=$VERSION --tag=latest --verbose env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}