JIRA-1367 [FEATURE] updated DRY RUN PARAM
parent
669c60048b
commit
71cfd54e1c
|
|
@ -83,9 +83,9 @@
|
|||
description: 'Select Application(s)'
|
||||
],
|
||||
[
|
||||
name: 'DRY_RUN',
|
||||
name: 'DRY_RUN_ONLY',
|
||||
$class: 'BooleanParameterDefinition',
|
||||
defaultValue: false,
|
||||
defaultValue: true,
|
||||
description: 'Do you want to execute a dry run only?'
|
||||
]
|
||||
]
|
||||
|
|
@ -131,7 +131,7 @@
|
|||
stage('Dynatrace config deployment') {
|
||||
when {
|
||||
|
||||
expression { params.DRY_RUN == false }
|
||||
expression { params.DRY_RUN_ONLY == false }
|
||||
}
|
||||
steps {
|
||||
script {
|
||||
|
|
|
|||
Loading…
Reference in New Issue