From 0a4d06281e7ac2d0b5fef5b13d8af015d07b687e Mon Sep 17 00:00:00 2001 From: ganthepro Date: Tue, 24 Dec 2024 21:51:04 +0700 Subject: [PATCH] fix: remove redundant docker login command and echo manifest repository in Deployment stage of Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 64cc6f8..725bba4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -41,10 +41,10 @@ pipeline { steps { script { withCredentials([string(credentialsId: 'edusaig-manifest-repo', variable: 'MANIFEST_REPO')]) { - sh "docker login -u $DOCKER_CREDENTIALS_USR -p $DOCKER_CREDENTIALS_PSW" + // ใช้คำสั่ง docker login เพื่อทำการ login เข้าสู่ Docker Hub + echo "$MANIFEST_REPO" } - echo "$MANIFEST_REPO" // sh "git clone $manifest-repo" // ใช้คำสั่ง git clone เพื่อทำการ clone โปรเจคของเรา }