This commit is contained in:
parent
d5d6aa4d08
commit
75423645ff
6
jenkins/Jenkinsfile
vendored
6
jenkins/Jenkinsfile
vendored
|
@ -59,8 +59,10 @@ pipeline {
|
||||||
stage('Build and push container on tag') {
|
stage('Build and push container on tag') {
|
||||||
when { buildingTag() }
|
when { buildingTag() }
|
||||||
steps {
|
steps {
|
||||||
def formattedTag = env.TAG_NAME.replaceFirst(/^v/, '')
|
script {
|
||||||
sh 'docker buildx build --platform linux/amd64,linux/arm64 --push -t $DOCKER_REGISTRY/$SERVICE:$formattedTag .'
|
def formattedTag = env.TAG_NAME.replaceFirst(/^v/, '')
|
||||||
|
sh 'docker buildx build --platform linux/amd64,linux/arm64 --push -t $DOCKER_REGISTRY/$SERVICE:$formattedTag .'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue