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