From 713b9005f3a056d0930e14a09c34da4d21107798 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Wed, 28 Apr 2021 17:07:39 +0200 Subject: [PATCH] chore: fix npm release --- .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 }}