woodburn/Jenkinsfile

11 lines
142 B
Plaintext
Raw Normal View History

2023-07-13 17:19:45 +10:00
pipeline {
agent any
stages {
2023-07-13 17:44:04 +10:00
stage('None') {
2023-07-13 17:19:45 +10:00
steps {
2023-07-13 17:44:04 +10:00
echo "Done"
2023-07-13 17:19:45 +10:00
}
}
}
}