Safari history back #2

Merged
carlosap merged 2 commits from test into master 2021-10-26 09:32:56 +00:00
1 changed files with 8 additions and 0 deletions
Showing only changes of commit 621dc729f1 - Show all commits

8
Jenkinsfile vendored
View File

@ -13,6 +13,10 @@ pipeline {
} }
} }
stage('Build') { stage('Build') {
when { anyOf {
branch 'test'
branch 'master'
}}
environment { environment {
CREDENTIALS = credentials('docker-registry') CREDENTIALS = credentials('docker-registry')
} }
@ -21,6 +25,10 @@ pipeline {
} }
} }
stage('Deploy') { stage('Deploy') {
when { anyOf {
branch 'test'
branch 'master'
}}
environment { environment {
DOCKER_HOST = "${env.SWARM_HOST}" DOCKER_HOST = "${env.SWARM_HOST}"
} }