jenkins-playground/Jenkinsfile

12 lines
207 B
Plaintext
Raw Normal View History

2024-10-25 21:09:17 -04:00
pipeline {
agent any
stages {
stage('credits'){
when { changeset "./credits.txt"}
steps {
2024-10-25 21:17:42 -04:00
sh "/home/adam/iHateThis.sh"
2024-10-25 21:09:17 -04:00
}
}
}
}