From 51b383fe85fbef2825e1abdbe9ed73545dda5cc4 Mon Sep 17 00:00:00 2001 From: Igor Randjelovic Date: Sat, 19 Dec 2020 20:14:41 +0100 Subject: [PATCH] ci: move npmrc to root --- .github/workflows/npm_release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm_release.yml b/.github/workflows/npm_release.yml index 6865a5a49..1e479ab7e 100644 --- a/.github/workflows/npm_release.yml +++ b/.github/workflows/npm_release.yml @@ -6,7 +6,7 @@ on: env: NPM_TAG: 'next' - + jobs: release: runs-on: ubuntu-latest @@ -34,7 +34,6 @@ jobs: env: NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} run: | - echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc - cat .npmrc + echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ../../.npmrc echo "Publishing @nativescript/core@$NPM_VERSION to NPM with tag $NPM_TAG..." npm publish nativescript-core-$NPM_VERSION.tgz --tag $NPM_TAG