From e00bd93478f0d5dbb5006bdb1b60194777cb4005 Mon Sep 17 00:00:00 2001 From: Ronan Browne Date: Tue, 22 Feb 2022 08:35:17 +0000 Subject: [PATCH] INFRA-1386 - remove nightly publish to dockerhub (#6908) (#7078) * INFRA-1386 - remove nightly publish to dockerhub. * Remove entirely. Co-authored-by: Dries Samyn --- .ci/dev/publish-branch/Jenkinsfile.nightly | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.ci/dev/publish-branch/Jenkinsfile.nightly b/.ci/dev/publish-branch/Jenkinsfile.nightly index f0cff55966..b7b36f7eb8 100644 --- a/.ci/dev/publish-branch/Jenkinsfile.nightly +++ b/.ci/dev/publish-branch/Jenkinsfile.nightly @@ -112,22 +112,6 @@ pipeline { ) } } - - stage('Publish Nightly to Docker Hub') { - steps { - withCredentials([ - usernamePassword(credentialsId: 'corda-publisher-docker-hub-credentials', - usernameVariable: 'DOCKER_USERNAME', - passwordVariable: 'DOCKER_PASSWORD')]) { - sh script: [ - './gradlew', - 'docker:pushDockerImage', - '-Pdocker.image.repository=corda/corda', - '--image OFFICIAL' - ].join(' ') - } - } - } }