jenkins-playground/Jenkinsfile

12 lines
225 B
Plaintext
Raw Normal View History

2024-10-25 21:09:17 -04:00
pipeline {
2024-10-30 23:29:40 -04:00
agent balaam
2024-10-25 21:09:17 -04:00
stages {
stage('credits'){
2024-10-25 21:21:28 -04:00
when { changeset "credits.txt"}
2024-10-25 21:09:17 -04:00
steps {
2024-10-30 23:29:40 -04:00
sh "beefhavers_credits.sh jenkins-playground"
2024-10-25 21:09:17 -04:00
}
}
}
}