From f705b6492648464717d4c1cb4288f03b8e136dcb Mon Sep 17 00:00:00 2001 From: ganthepro Date: Tue, 24 Dec 2024 22:28:07 +0700 Subject: [PATCH] fix: update directory path in git command for manifest repository in Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5016317..7e8ec7e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -43,7 +43,7 @@ pipeline { withCredentials([string(credentialsId: 'edusaig-manifest-repo', variable: 'MANIFEST_REPO')]) { sh "git clone $MANIFEST_REPO" sh 'sed -i "s/^\\([[:space:]]*tag:[[:space:]]*\\).*/\\1\\"$BUILD_NUMBER\\"/" edusaig-manifests/values.yaml' - sh "cd edusaig-manifest && git add . && git commit -m 'Update tag to $BUILD_NUMBER' && git push" + sh "cd edusaig-manifests && git add . && git commit -m 'Update tag to $BUILD_NUMBER' && git push" // ใช้คำสั่ง git clone เพื่อทำการ clone โปรเจคของเรา และใช้คำสั่ง sed เพื่อทำการแก้ไขไฟล์ values.yaml ในโปรเจคของเรา } // ใช้คำสั่ง git clone เพื่อทำการ clone โปรเจคของเรา