jenkins-playground/Jenkinsfile
adam 19a41c8781
All checks were successful
gitea.arg.rip/jenkins-playground/pipeline/head This commit looks good
Fri Oct 25 22:11:39 EDT 2024
2024-10-25 22:11:39 -04:00

12 lines
224 B
Groovy

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