Skip to content

Commit

Permalink
fix: update directory path in git command for manifest repository in …
Browse files Browse the repository at this point in the history
…Jenkinsfile
  • Loading branch information
Ganthepro committed Dec 24, 2024
1 parent 90fe616 commit f705b64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 โปรเจคของเรา
Expand Down

0 comments on commit f705b64

Please sign in to comment.