jenkins-playground/Jenkinsfile

12 lines
205 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 21:28:52 -04:00
sh "/home/adam/iHateThis.sh"
2024-10-25 21:09:17 -04:00
}
}
}
}