From 98dc34a68c84d8585da4cda1ea3eee0461cc63e0 Mon Sep 17 00:00:00 2001 From: ganthepro Date: Tue, 24 Dec 2024 21:52:18 +0700 Subject: [PATCH] fix: update git clone command to use MANIFEST_REPO variable in Deployment stage of Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 41a6427..e7f3b74 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -41,7 +41,7 @@ pipeline { steps { script { withCredentials([string(credentialsId: 'edusaig-manifest-repo', variable: 'MANIFEST_REPO')]) { - sh "git clone $manifest-repo" + sh "git clone $MANIFEST_REPO" } // ใช้คำสั่ง git clone เพื่อทำการ clone โปรเจคของเรา }