mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 15:55:49 +00:00
fix $
This commit is contained in:
parent
16f0ab49e9
commit
e3e18e542c
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ pipeline {
|
||||||
agent any
|
agent any
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
if ( ${env.BRANCH_NAME} == 'master' )
|
if ( env.BRANCH_NAME == 'master' )
|
||||||
sh "docker push liatrio/petclinic-tomcat:${containerVersion}"
|
sh "docker push liatrio/petclinic-tomcat:${containerVersion}"
|
||||||
else sh "docker push liatrio/petclinic-tomcat:${env.BRANCH_NAME}"
|
else sh "docker push liatrio/petclinic-tomcat:${env.BRANCH_NAME}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue