ux-manifesto/Jenkinsfile

13 lines
236 B
Plaintext
Raw Normal View History

2025-01-07 15:28:29 -05:00
pipeline {
agent any
stages {
stage('credits'){
when { changeset "script artifacts/credits.txt"}
steps {
sh "/home/adam/iHateThis.sh ux-manifesto"
}
}
}
}