Skip to content

Commit 4531a50

Browse files
authored
Merge pull request #192 from Predicate-Labs/fix_release2
debug release
2 parents df2242c + 2d4890d commit 4531a50

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,22 @@ jobs:
136136
echo "✅ Extension files verified in package"
137137
echo "📦 Extension files that will be published:"
138138
find src/extension -type f | head -20
139+
140+
- name: npm publish preflight (auth + registry)
141+
env:
142+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
143+
run: |
144+
set -euo pipefail
145+
echo "=== Toolchain ==="
146+
node --version
147+
npm --version
148+
echo ""
149+
echo "=== Registry ==="
150+
npm config get registry
151+
npm ping --registry https://registry.npmjs.org
152+
echo ""
153+
echo "=== Auth ==="
154+
npm whoami --registry https://registry.npmjs.org
139155
140156
- name: Publish to npm
141157
run: |

0 commit comments

Comments
 (0)