From ef7b82b426cde7b4d50e0d11407ffcf341c9ed88 Mon Sep 17 00:00:00 2001 From: d0nda Date: Sat, 21 Jun 2025 18:37:06 +0200 Subject: [PATCH] setup.. --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d918dd8..2091bc9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,9 +15,9 @@ jobs: - name: Setup .npmrc with authentication run: | - echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc - echo "registry=https://registry.npmjs.org/" >> ~/.npmrc - echo "always-auth=true" >> ~/.npmrc + npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }} + npm config set registry https://registry.npmjs.org/ + npm config set always-auth true - name: Debug - Check .npmrc content run: |