Skip to content

Instantly share code, notes, and snippets.

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

  • Save Osein/95f2c7894e8302f132464aafa453627f to your computer and use it in GitHub Desktop.

Select an option

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