From 88eb2f42b200fb05060d6b1db7b1e80b0c29aa79 Mon Sep 17 00:00:00 2001 From: wodnr533 Date: Tue, 2 Sep 2025 15:55:19 +0900 Subject: [PATCH] Update Jenkinsfile Signed-off-by: wodnr533 --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index aaabe9968..149b89c2b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,9 +2,9 @@ pipeline { agent any stages{ - stage('Hello'){ + stage('Git Clone'){ steps { - echo 'Hello World' + git url: 'https://github.cin/wodnr533/spring-petclinic.git', branch: 'main' } } }