jenkins-playground/Jenkinsfile
adam 2211575c3c
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
maybe not ./ for credits.txt
2024-10-25 21:21:28 -04:00

12 lines
205 B
Groovy

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