Skip to content

Instantly share code, notes, and snippets.

@duduribeiro
Created July 1, 2017 05:08
Show Gist options
  • Save duduribeiro/5beaf7df963eded273d83d451c62b06c to your computer and use it in GitHub Desktop.
Save duduribeiro/5beaf7df963eded273d83d451c62b06c to your computer and use it in GitHub Desktop.
review_app-Jenkinsfile-stages
stage('Deploy to Staging') {
when {
expression { env.BRANCH_NAME == 'master' }
}
steps {
echo 'deploy to staging'
createEnvironment('staging')
}
}
stage('Create feature environment') {
when {
expression { env.BRANCH_NAME != 'master' }
}
steps {
echo 'create custom environment'
createEnvironment(env.BRANCH_NAME)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment