jenkins-playground/Jenkinsfile
2024-10-30 23:34:45 -04:00

15 lines
243 B
Groovy

pipeline {
agent {
label "balaam"
}
stages {
stage('credits'){
when { changeset "credits.txt"}
steps {
sh "beefhavers_credits.sh jenkins-playground"
}
}
}
}