From 2309c4cccd8b84a023cbb1ce2c8056d7a735e703 Mon Sep 17 00:00:00 2001 From: Alexis Pentori Date: Thu, 1 Feb 2024 14:00:55 +0100 Subject: [PATCH] ci: push to Harbor registry Signed-off-by: Alexis Pentori --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4e39eb1..ea004ab 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -34,7 +34,7 @@ pipeline { } environment { - IMAGE_NAME = 'statusteam/logos-press-engine' + IMAGE_NAME = 'status-private/logos-press-engine' } stages { @@ -80,7 +80,7 @@ pipeline { stage('Push') { steps { script { withDockerRegistry([ - credentialsId: 'dockerhub-statusteam-auto', url: '' + credentialsId: 'harbor-status-private-robot', url: 'https://harbor.status.im' ]) { image.push() } @@ -91,7 +91,7 @@ pipeline { when { expression { params.IMAGE_TAG != '' } } steps { script { withDockerRegistry([ - credentialsId: 'dockerhub-statusteam-auto', url: '' + credentialsId: 'harbor-status-private-robot', url: 'https://harbor.status.im' ]) { image.push(params.IMAGE_TAG) }