From 3f2929f82e1475d9b1e31101d8b4003f0ce0fbed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Javier=20Ribo=CC=81=20Labrador?= Date: Fri, 27 Oct 2023 19:13:53 +0200 Subject: [PATCH] fix: add auth to ci MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Francisco Javier RiboĢ Labrador --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e1b63e21..29c849bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,10 @@ jobs: uses: actions/setup-node@v3 with: node-version: '18' # adjust this to your project's Node.js version - + + - name: Authenticate with private NPM package + run: echo "//registry.npmjs.org/:_authToken=${{ secrets.PLUTO_GITHUB }}" > ~/.npmrc + - name: Install Dependencies env: GH_TOKEN: ${{ secrets.PLUTO_GITHUB }}