我正在尝试使用git克隆的credentials参数,但是我收到了变量找不到的错误
参数定义
credentials (credentialType: 'Username with password', defaultValue: 'fcb2d7c3-4b35-4ef2-bdf0-24fc4ff1137c', description: 'Git credential', name: 'git_credential', required: true)
阶段使用
withCredentials([usernamePassword(credentialsId: params.git_credential, passwordVariable: 'DOCKER_PASSWORD', usernameVariable: 'DOCKER_USERNAME')]) {
sh 'git reset --hard; git clone https://${DOCKER_USERNAME}:${DOCKER_PASSWORD}@repo_url/scm/${params.repository}.git --branch master'
错误:使用了错误的变量
1条答案
按热度按时间vom3gejh1#
这对我很有效
我希望这对你有帮助。