From 30770bf362b3d6663807e1554255ff8ff1abcd53 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Wed, 22 Oct 2025 14:26:28 -0700 Subject: [PATCH] refactor(ci): remove debug npmrc step from build-and-publish --- .github/workflows/build-and-publish.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 07968cf773..e055fcd085 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -52,14 +52,6 @@ jobs: echo "version=${NEW_VERSION}" >> "$GITHUB_OUTPUT" npm version --no-git-tag-version "${NEW_VERSION}" - - name: 'Debug .npmrc' - run: | - echo "--- Listing files in current directory ---" - ls -la - echo "--- Contents of .npmrc ---" - cat .npmrc - echo "---------------------------" - - name: 'Publish to GitHub Packages' env: NODE_AUTH_TOKEN: '${{ secrets.GITHUB_TOKEN }}'