ci: push to Harbor registry

Signed-off-by: Alexis Pentori <alexis@status.im>
This commit is contained in:
Alexis Pentori 2024-02-01 14:00:55 +01:00
parent 94a4613d72
commit 2309c4cccd
No known key found for this signature in database
GPG Key ID: 65250D2801E47A10
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -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)
}