fix pipeline step name

This commit is contained in:
Yevgeniy Poluektov 2016-10-25 17:32:18 +03:00
parent e8e2f437b0
commit 90200a804b

4
Jenkinsfile vendored
View File

@ -11,12 +11,12 @@ build('image-columbus', 'docker-host') {
} }
pipeDefault() { pipeDefault() {
runStage('build postgres image') { runStage('build image') {
sh "make build_image" sh "make build_image"
} }
try { try {
if (env.BRANCH_NAME == 'master') { if (env.BRANCH_NAME == 'master') {
runStage('push postgresimage') { runStage('push image') {
sh "make push_image" sh "make push_image"
} }
} }