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