We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 715ff6b commit d9d5048Copy full SHA for d9d5048
1 file changed
.github/workflows/release-node.yaml
@@ -53,6 +53,20 @@ jobs:
53
working-directory: packages/cli
54
run: npm version "${{ steps.meta.outputs.version }}" --no-git-tag-version
55
56
+ - name: Debug environment
57
+ working-directory: packages/cli
58
+ run: |
59
+ echo "Node: $(node --version)"
60
+ echo "npm: $(npm --version)"
61
+ echo "--- ~/.npmrc ---"
62
+ cat ~/.npmrc 2>/dev/null || echo "(none)"
63
+ echo "--- .npmrc ---"
64
+ cat .npmrc 2>/dev/null || echo "(none)"
65
+ echo "--- npm config ---"
66
+ npm config list
67
+ echo "--- registry ---"
68
+ npm config get registry
69
+
70
- name: Publish to npm (trusted publishing)
71
72
run: npm publish --access public --provenance
0 commit comments