From 9a85b7eca3cf1eca69847b5b902f72c4c2feacdb Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Wed, 28 Apr 2021 19:21:27 +0200 Subject: [PATCH] chore: fix npm release (#9768) --- .github/workflows/release-npm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index c718fb45dc9d5b..1477e707a4ccc2 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -75,6 +75,6 @@ jobs: - name: Publish ${{ env.NPM_VERSION }} run: | echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' >> ~/.npmrc - npm publish --tag ${NPM_TAG:-latest} + npm publish --tag ${{env.NPM_TAG}} env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }}