milsko/Jenkinsfile

16 lines
160 B
Text
Raw Normal View History

2026-02-03 23:24:34 +09:00
pipeline {
agent {
label "built-in"
}
stages {
stage("Build document") {
steps {
}
post {
always {
notifyDiscord()
}
}
}
}
}