我曾经使用包含发布阶段的 DSL 管道将我的 NPM 项目发布到 Nexus,步骤如下:
stage ('Publish') {
nodejs(nodeJSInstallationName: 'Node LTS', configId: '123456ab-1234-abcd-1234-f123d45e6789') {
sh 'npm publish'
}
}
我的 Jenkins 上有一个名为“Node LTS”的 NodeJS 安装,以及一个带有此 configId 的 npmrc 配置文件。
现在我想将这个阶段导出到一个 groovy SharedLib 中。根据声明性管道文档和这个 nodejs-plugin 问题,我可以这样写:
stage('Publish') {
tools {
nodejs 'Node LTS'
}
steps {
sh 'npm publish'
}
}
但这并没有设置当前在我的 npmrc 配置文件中的身份验证配置:
registry=http://my-nexus/repository/npm-private/
_auth="some=base=64=credential=="
always-auth=true
任何想法用声明性语法检索此配置并防止此错误消息?
npm ERR! code ENEEDAUTH
npm ERR! need auth auth required for publishing
npm ERR! need auth You need to authorize this machine using `npm adduser`