jenkins-playground/Jenkinsfile
adam 99a22ef204
All checks were successful
gitea.arg.rip/jenkins-playground/pipeline/head This commit looks good
Fri Oct 25 21:53:46 EDT 2024
2024-10-25 21:53:46 -04:00

12 lines
226 B
Groovy

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