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

10 lines
154 B
Groovy

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