jenkins-playground/Jenkinsfile
adam 360fe76797
Some checks failed
gitea.arg.rip/jenkins-playground/pipeline/head There was a failure building this commit
Fri Oct 25 21:25:46 EDT 2024
2024-10-25 21:25:46 -04:00

12 lines
215 B
Groovy

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