1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// https://www.jenkins.io/doc/book/pipeline/syntax/#when pipeline { agent any stages { stage('Example Build') { steps { echo 'Hello World' } } stage('Example Deploy') { when { branch 'production' environment name: 'DEPLOY_TO', value: 'production' } steps { echo 'Deploying' } } } }