From 1228821c745c28735ced46bbfd0ac7aa1fa1c0dc Mon Sep 17 00:00:00 2001 From: Nana Janashia Date: Fri, 6 Nov 2020 09:10:05 +0000 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b3439aa..549586b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,15 +38,15 @@ pipeline { message "Select the environment to deploy to" ok "Done" parameters { - choice(name: 'ENV-ONE', choices: ['dev', 'staging', 'prod'], description: '') - choice(name: 'ENV-TWO', choices: ['dev', 'staging', 'prod'], description: '') + choice(name: 'ONE', choices: ['dev', 'staging', 'prod'], description: '') + choice(name: 'TWO', choices: ['dev', 'staging', 'prod'], description: '') } } steps { script { gv.deployApp() - echo "Deploying to ${ENV-ONE}" - echo "Deploying to ${ENV-TWO}" + echo "Deploying to ${ONE}" + echo "Deploying to ${TWO}" } } }