From c0bfd62eaf41305634cb22face6fb2052f1cf09a Mon Sep 17 00:00:00 2001 From: larryrider Date: Tue, 4 Aug 2026 13:22:23 +0200 Subject: [PATCH] feat: fix .npmrc creation step to append auth token correctly --- .github/workflows/publish-github.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-github.yml b/.github/workflows/publish-github.yml index 67e26b3..99c766d 100644 --- a/.github/workflows/publish-github.yml +++ b/.github/workflows/publish-github.yml @@ -18,11 +18,12 @@ jobs: uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} + registry-url: 'https://npm.pkg.github.com' - name: Create .npmrc run: | echo "@internxt:registry=https://npm.pkg.github.com/" > .npmrc - echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" + echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc - name: Install dependencies run: npm ci