Skip to content

Instantly share code, notes, and snippets.

@Osein
Created June 30, 2019 19:50
Show Gist options
  • Save Osein/fa40971cfdd5fd88ce70f024c43f88cd to your computer and use it in GitHub Desktop.
Save Osein/fa40971cfdd5fd88ce70f024c43f88cd to your computer and use it in GitHub Desktop.
stage('Send to Prod') {
when {
expression {
return env.shouldBuild != "false" && env.BRANCH_NAME == "master"
}
}
steps {
// Deploy your application to prod servers
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment