9iron/Jenkinsfile

16 lines
157 B
Plaintext
Raw Normal View History

2022-01-22 15:25:03 -06:00
pipeline {
agent any
stages {
stage('Build') {
2022-01-22 15:28:24 -06:00
steps {
echo 'BUILD'
}
2022-01-22 15:25:03 -06:00
}
stage('Build Tag') {
2022-01-22 15:28:24 -06:00
steps {
echo 'BUILD TAG'
}
2022-01-22 15:25:03 -06:00
}
}
}