From f9d563f936e891d8beb69bcd9a018720bb94b85b Mon Sep 17 00:00:00 2001 From: Ivan Shumkov Date: Thu, 23 Dec 2021 00:41:06 +0700 Subject: [PATCH] ci: pass NPM token to `npm publish` command --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 37ac640f391..0dc6a9e2bb5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,6 +59,8 @@ jobs: - name: Publish NPM packages run: yarn workspaces foreach --all --no-private --parallel npm publish --access public --tag ${{ steps.tag.outputs.result }} + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} release-drive-docker-image: name: Release Drive to Docker Hub