From 615e1773655c20a33c6dd519f886c189d8781b14 Mon Sep 17 00:00:00 2001 From: GasparAM Date: Fri, 14 Apr 2023 15:09:36 +0400 Subject: [PATCH] switching everything to alt repo --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 67555971d..6ebacd596 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,7 @@ pipeline { stage('Docker up') { steps { sh ''' - docker build -t "gavetisyangd/main:${GIT_COMMIT}" ./ + docker build -t "gavetisyangd/mr:${GIT_COMMIT}" ./ ''' } } @@ -43,7 +43,7 @@ pipeline { withCredentials([string(credentialsId: 'dhub', variable: 'TOKEN')]) { sh ''' echo $TOKEN | docker login -u gavetisyangd --password-stdin - docker push gavetisyangd/main + docker push "gavetisyangd/mr:${GIT_COMMIT}" ''' } }