jenkins-playground/Jenkinsfile
adam 7f754d40fd
All checks were successful
gitea.arg.rip/jenkins-playground/pipeline/head This commit looks good
Fri Oct 25 21:28:52 EDT 2024
2024-10-25 21:28:52 -04:00

12 lines
205 B
Groovy

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