5

我曾经使用包含发布阶段的 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`
4

1 回答 1

5

查看 npm 日志文件并阅读文档,我终于发现最好的解决方案是在我的 package.json 文件中指定以下发布配置:

{
  "name": "@my-company/my-project",
  ...
  "publishConfig": {
    "registry": "http://my-nexus/repository/npm-private/"
  },
  ...
}

我离开.npmrc配置:

registry=http://my-nexus/repository/npm-private/
_auth="some=base=64=credential=="
always-auth=true

注意always-auth在我的情况下,自动化脚本需要:https ://docs.npmjs.com/misc/config

于 2018-04-23T08:25:15.200 回答