9iron/Jenkinsfile

12 lines
123 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
echo 'BUILD'
}
stage('Build Tag') {
echo 'BUILD TAG'
}
}
}