From e918bf62b48ee509328d1e4551298b4dd90b2808 Mon Sep 17 00:00:00 2001 From: sundayenglish Date: Tue, 29 Oct 2024 11:45:24 +0700 Subject: [PATCH] first commit --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 808b470..e15a65f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,12 +8,12 @@ pipeline { stages { stage('Checkout Code') { steps { - // git branch: "${BRANCH}", url: "${GIT_URL}" + echo "Code has been successfully pulled and copied to ${DEST_DIR}" } } stage('Copy Code to Server Directory') { steps { - // sh "cp -R * ${DEST_DIR}/" + echo "Code has been successfully pulled and copied to ${DEST_DIR}" } } }