We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d483ba4 commit f1698f9Copy full SHA for f1698f9
2 files changed
.github/workflows/deploy-auto.yml
@@ -62,7 +62,7 @@ jobs:
62
63
- name: Debug NPM token
64
run: |
65
- echo "Token prefix: ${NODE_AUTH_TOKEN:0:4}..."
+ echo "Token prefix: ${NPM_TOKEN:0:4}..."
66
npm whoami
67
68
- name: Publish to NPM
scripts/lib/secrets.js
@@ -1,5 +1,6 @@
1
const { command } = require('../lib/command')
2
const dotenv = require('dotenv')
3
+const { printLog, runMain } = require('../lib/executionUtils')
4
5
dotenv.config()
6
@@ -31,6 +32,7 @@ function getTelemetryOrgApplicationKey(site) {
31
32
33
function getNpmToken() {
34
// return getSecretKey('ci.browser-sdk.npm_token')
35
+ printLog('NPM_TOKEN--->', process.env.NPM_TOKEN)
36
return process.env.NPM_TOKEN || ''
37
}
38
0 commit comments