s
Some checks failed
internetmastercz/test/pipeline/head There was a failure building this commit

This commit is contained in:
2021-10-20 02:40:52 +02:00
parent 58653e89e7
commit 713c5d7409

3
Jenkinsfile vendored
View File

@@ -22,10 +22,13 @@ pipeline {
} }
} }
stage('Deploy') { stage('Deploy') {
node {
checkout scm
docker.withRegistry("${env.ENV_REGISTRY_URL}", 'registry-credentials-id') { docker.withRegistry("${env.ENV_REGISTRY_URL}", 'registry-credentials-id') {
def customImage = docker.build("${env.ENV_REGISTRY_URL}/jenkins/website:${env.BUILD_ID}") def customImage = docker.build("${env.ENV_REGISTRY_URL}/jenkins/website:${env.BUILD_ID}")
customImage.push() customImage.push()
} }
} }
} }
}
} }