Une collection organisée de snippets de code pour accélérer votre développement. Parcourez, recherchez et copiez en un clic.
stage('Deploy') {
when { expression { params.RUN_DEPLOY == true } }
steps { /* ... */ }
}
stage('Deploy to Prod') {
when { branch 'main' }
steps { /* ... */ }
}
when {
allOf {
branch 'main';
expression { params.ENVIRONMENT == 'production' }
}
}