milsko/Jenkinsfile
2026-02-03 23:24:34 +09:00

16 lines
160 B
Groovy

pipeline {
agent {
label "built-in"
}
stages {
stage("Build document") {
steps {
}
post {
always {
notifyDiscord()
}
}
}
}
}