Jenkinsfile refactor
gitea/vn-autoconfig/master This commit looks good Details

This commit is contained in:
Juan Ferrer 2020-01-31 21:27:53 +01:00
parent 9df24b8357
commit 973ec06b56
1 changed files with 6 additions and 1 deletions

7
Jenkinsfile vendored
View File

@ -15,7 +15,12 @@ pipeline {
when { when {
branch 'master' branch 'master'
} }
dockerDeploy() environment {
CREDENTIALS = credentials('docker-registry')
}
steps {
dockerDeploy()
}
} }
} }
post { post {