From 0b1d853466c3a7e67bd9a94af5579e08cc1f5fdf Mon Sep 17 00:00:00 2001 From: Andreas Schujkow Date: Thu, 4 Jul 2024 09:30:07 +0200 Subject: [PATCH] chore: update token handling --- .github/actions/setup/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index d353193..b39b0c7 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -4,7 +4,7 @@ inputs: run_install: description: Run the install pnpm command default: "false" - NPM_TOKEN: + GH_NPM_TOKEN: description: "npm token for private registry" required: true @@ -28,3 +28,5 @@ runs: - name: Install dependencies shell: bash run: pnpm install --frozen-lockfile + env: + GH_NPM_TOKEN: ${{ inputs.GH_NPM_TOKEN }}