我正在尝试运行Jenkins 2管道(Jenkinsfile),它将使用npm publish
将包发布到本地NPM存储库。
为了做到这一点,我尝试在Jenkinsfile中使用以下阶段:
stage('TEST npm whoami') {
withEnv(["PATH+NPM=${tool name: 'node-6', type: 'jenkins.plugins.nodejs.tools.NodeJSInstallation'}/bin"]) {
withCredentials([[$class: 'StringBinding', credentialsId: 'npm-token', variable: 'NPM_TOKEN']]) {
sh """
npm whoami
"""
}
}
}
目前我只运行npm whoami
,一旦运行,我会将其替换为npm publish
。
这是我得到的输出:
+ npm whoami
npm ERR! Linux 4.7.5-1.el7.elrepo.x86_64
npm ERR! argv "/var/lib/jenkins/tools/jenkins.plugins.nodejs.tools.NodeJSInstallation/node-6/bin/node" "/var/lib/jenkins/tools/jenkins.plugins.nodejs.tools.NodeJSInstallation/node-6/bin/npm" "whoami"
npm ERR! node v6.5.0
npm ERR! npm v3.10.3
npm ERR! code ENEEDAUTH
npm ERR! need auth this command requires you to be logged in.
npm ERR! need auth You need to authorize this machine using `npm adduser`
答案 0 :(得分:1)
从this GitHub issue看,似乎NPM_TOKEN
不是npm本身可识别的东西,而是heroku(可能还有其他平台)解释的自定义环境变量。
根据该问题中的一些讨论,我所做的是基于来自我的凭据的令牌env var在作业执行时创建项目级.npmrc
,然后再次删除该文件继续之前。 E.g:
stage('TEST npm whoami') {
withCredentials([string(
credentialsId: 'npm-token',
variable: 'NPM_TOKEN')]) {
sh "echo //npm.skunkhenry.com/:_authToken=${env.NPM_TOKEN} > .npmrc"
sh 'npm whoami'
sh 'rm .npmrc'
}
}
希望这有帮助!
答案 1 :(得分:0)
杰拉德·瑞安(Gerard Ryan)和加斯顿(Gaston)的答案是正确的,我只想补充一个我一开始没有得到的细节:
如果要使用私有存储库,则.npmrc
还应指定注册表:
withCredentials([string(credentialsId: 'registry', variable: 'token')]) {
try {
sh "echo registry=<your-registry-URL> >> .npmrc"
sh "echo //<your-registry-URL>/:_authToken=${env.token} >> .npmrc"
sh 'npm whoami'
} finally {
sh 'rm ~/.npmrc'
}
}