From 2abc090b0749acd9f9b1b13ca5f69563e5995979 Mon Sep 17 00:00:00 2001 From: SentienceDEV Date: Sun, 15 Feb 2026 11:10:52 -0800 Subject: [PATCH] fix release 3 --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3bd9382..8a6207c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,6 +23,8 @@ jobs: with: node-version: '20' registry-url: 'https://registry.npmjs.org' + scope: '@predicate' + always-auth: true - name: Extract version from tag or input id: version @@ -142,6 +144,9 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} run: | set -euo pipefail + echo "=== Token presence (non-secret) ===" + node -e "console.log('NODE_AUTH_TOKEN set:', !!process.env.NODE_AUTH_TOKEN, 'len:', (process.env.NODE_AUTH_TOKEN||'').length)" + echo "" echo "=== Toolchain ===" node --version npm --version @@ -152,6 +157,9 @@ jobs: echo "" echo "=== Auth ===" npm whoami --registry https://registry.npmjs.org + echo "" + echo "=== Scope access (@predicate) ===" + npm access ls-packages @predicate --registry https://registry.npmjs.org - name: Publish to npm run: |