change
Some checks failed
main-branch-frovide/pipeline/head There was a failure building this commit

This commit is contained in:
Insub Kim 2025-06-05 05:43:55 +00:00
parent 02fa3f4300
commit 0a648b638a

5
Jenkinsfile vendored
View File

@ -32,8 +32,9 @@ pipeline {
stages {
stage('Checkout Source Code') {
steps {
git 'https://git.frovide.com/kegorii/frovide.com.git' // 본인의 Git 저장소 URL로 변경
// credentialsId: 'your-git-credential-id' // Git Credential 필요시
git branch: 'main', url: 'https://git.frovide.com/kegorii/frovide.com.git'
// 만약 main 브랜치가 아닌 다른 브랜치라면 해당 브랜치 이름으로 변경해주세요.
// 예: git branch: 'develop', url: '...'
}
}