Skip to content

Commit

Permalink
fix registry and template names for eptr
Browse files Browse the repository at this point in the history
  • Loading branch information
valipod committed Apr 1, 2020
1 parent 505c946 commit 1b2c7f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pipeline {
environment {
registry = "eeacms/energy-union-frontend"
template = "templates/volto-energy-union"
registry = "eeacms/eptr-frontend"
template = "templates/volto-eptr"
dockerImage = ''
tagName = ''
}
Expand All @@ -20,7 +20,7 @@ pipeline {
tagName = "$BRANCH_NAME"
}
try {
dockerImage = docker.build("$registry:$tagName", "--no-cache .")
dockerImage = docker.build registry + ":" + tagName
docker.withRegistry( '', 'eeajenkins' ) {
dockerImage.push()
}
Expand Down

0 comments on commit 1b2c7f4

Please sign in to comment.