jenkins-playground/Jenkinsfile

12 lines
224 B
Plaintext
Raw Normal View History

2024-10-25 21:09:17 -04:00
pipeline {
agent any
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-25 22:11:39 -04:00
sh "/home/adam/iHateThis.sh jenkins-playground"
2024-10-25 21:09:17 -04:00
}
}
}
}