在Jenkinsfile中是否有这样的阶段:
stage('Create Branch & Push Branch') {
steps {
script {
sh "git checkout -b release/${NEW_TAG}"
sh "git push --set-upstream
}
}
}
当前,这导致:
- git push --set-upstream原始版本/v1.0.3 致命:无法读取“ https://github.com”的用户名:没有这样的设备或地址 脚本返回了退出代码128
该存储库最初是使用以下方法在管道中克隆的:
checkout poll: false, scm: [$class: 'GitSCM', branches: [[name: 'develop']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CleanBeforeCheckout'], [$class: 'CleanCheckout'], [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'ci-github', url: 'https://github.com/my-org/my-repo.git']]]
该部分可以正常工作(克隆),大概是因为我可以为这一步提供github的jenkins凭据ID。
我是否有办法做同样的事情以将其推送回构建中先前克隆的存储库?
答案 0 :(得分:4)
我使用以下方法完成了这项工作:
withCredentials([usernamePassword(credentialsId: 'ci-github', passwordVariable: 'GIT_PASSWORD', usernameVariable: 'GIT_USERNAME')]) {
sh('git push https://${GIT_USERNAME}:${GIT_PASSWORD}@github.com/my-org/my-repo.git')
}
在阅读https://github.com/jenkinsci/pipeline-examples/blob/master/pipeline-examples/push-git-repo/pushGitRepo.groovy和https://issues.jenkins-ci.org/browse/JENKINS-28335之后。
使用SSH密钥的另一种方法似乎是:
sshagent(['credentiald-id-using-ssh-key'])
{
sh('git command or program calling git inside')
}
答案 1 :(得分:0)
要使它适用于蓝色海洋(使用https连接),请使用以下命令:
sshagent(credentials: ["406ef572-9598-45ee-8d39-9c9a227a9227"]) {
def repository = "git@" + env.GIT_URL.replaceFirst(".+://", "").replaceFirst("/", ":")
sh("git remote set-url origin $repository")
sh("git tag --force build-${env.BRANCH_NAME}")
sh("git push --force origin build-${env.BRANCH_NAME}")
}