From 87bd1cdd0211f5f61b2a11982e00ce4afb10a035 Mon Sep 17 00:00:00 2001 From: rigor789 Date: Fri, 17 Jul 2020 23:02:58 +0200 Subject: [PATCH] ci: change message and working dir --- .github/workflows/npm_release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm_release.yml b/.github/workflows/npm_release.yml index 9999f3b3f..6527b9066 100644 --- a/.github/workflows/npm_release.yml +++ b/.github/workflows/npm_release.yml @@ -26,10 +26,10 @@ jobs: run: npx nx run core:build.npm - name: Publish @nativescript/core + working-directory: dist env: NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} run: | echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc - echo dist/nativescript-core-$NPM_VERSION.tgz - echo Publishing to NPM... - npm publish dist/nativescript-core-$NPM_VERSION.tgz --tag ci --dry-run + echo "Publishing @nativescript/core@$NPM_VERSION to NPM..." + npm publish nativescript-core-$NPM_VERSION.tgz --tag ci --dry-run