jenkins-playground/Jenkinsfile

12 lines
205 B
Groovy

pipeline {
agent any
stages {
stage('credits'){
when { changeset "credits.txt"}
steps {
sh "/home/adam/iHateThis.sh"
}
}
}
}