jenkins-playground/Jenkinsfile
adam 17f5b66301
All checks were successful
gitea.arg.rip/jenkins-playground/pipeline/head This commit looks good
label, node. whatever.
2024-10-30 23:34:45 -04:00

15 lines
243 B
Groovy

pipeline {
agent {
label "balaam"
}
stages {
stage('credits'){
when { changeset "credits.txt"}
steps {
sh "beefhavers_credits.sh jenkins-playground"
}
}
}
}