INFRA-1033 Publish RCs to DockerHub (#6829)

This commit is contained in:
Ross Nicoll 2020-11-30 22:30:29 +00:00 committed by GitHub
parent 17b0edffd1
commit dce0e581e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -275,7 +275,8 @@ pipeline {
stage('Publish Release to Docker Hub') {
when {
expression { isReleaseTag && !isInternalRelease && !isReleaseCandidate}
/* Note we do publish release tags, unlike Corda Enterprise */
expression { !isInternalRelease && isReleaseTag }
}
steps {
withCredentials([
@ -288,7 +289,7 @@ pipeline {
COMMON_GRADLE_PARAMS,
'docker:pushDockerImage',
'-Pdocker.image.repository=corda/corda',
'--image ALPINE_ZULU'
'--image OFFICIAL'
].join(' ')
}
}