Skip to content

Instantly share code, notes, and snippets.

@Osein
Created June 30, 2019 19:47
Show Gist options
  • Select an option

  • Save Osein/8d033e86d14bc2462733d14e5fe0654a to your computer and use it in GitHub Desktop.

Select an option

Save Osein/8d033e86d14bc2462733d14e5fe0654a to your computer and use it in GitHub Desktop.
stage('Build application for beta') {
when {
expression {
return env.shouldBuild != "false"
}
}
steps {
// Build application for pre-prod servers
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment