9iron/Jenkinsfile

12 lines
123 B
Plaintext
Raw Normal View History

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