jenkins-playground/Jenkinsfile
adam ee686b3aec
All checks were successful
gitea.arg.rip/jenkins-playground/pipeline/head This commit looks good
my worst idea yet
2024-10-25 21:17:42 -04:00

12 lines
207 B
Groovy

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