feature/Feature-1 #4

Merged
jakub merged 39 commits from feature/Feature-1 into master 2021-10-20 15:40:59 +00:00
Showing only changes of commit 713c5d7409 - Show all commits

3
Jenkinsfile vendored
View File

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