Back/Jenkinsfile
seonkyu.kim d1ae9d7018
All checks were successful
STEIN_WEB_Back/pipeline/head This commit looks good
[📝] Jenkins 구축
2024-07-11 17:25:13 +09:00

10 lines
154 B
Groovy
Executable File

pipeline {
agent any
stages {
stage('stage 1') {
steps {
echo "Hello world"
}
}
}
}