Skip to content

Commit

Permalink
Merge pull request #195 from jenkinsci/disable-deploy-from-ci.jenkins.io
Browse files Browse the repository at this point in the history
Disable Docker image deployment from ci.jenkins.io due to the unstable CI
  • Loading branch information
oleg-nenashev authored Oct 12, 2019
2 parents 2af569f + bf4408d commit e8546af
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,14 @@ node('docker') {
}
}

if (branchName.startsWith('master')) {
stage('Publish container') {
timestamps {
image.push();
}
}
}
// TODO(oleg-nenashev): Reenable once CI is stable
// if (branchName.startsWith('master')) {
// stage('Publish container') {
// timestamps {
// image.push();
// }
// }
// }
}
}
}
Expand Down

0 comments on commit e8546af

Please sign in to comment.