Perbaiki proses checkout di Jenkinsfile

- Mengganti langkah `checkout scm`
This commit is contained in:
Daeng Deni Mardaeni
2024-12-25 21:33:18 +07:00
parent 7298bc8b19
commit b06016aa41

3
Jenkinsfile vendored
View File

@@ -9,7 +9,8 @@ pipeline {
stages {
stage('Checkout') {
steps {
checkout scm
sh "git checkout staging"
sh "git pull origin staging"
}
}