From 91c148a9a51a60c59ca00fc221959df380995c00 Mon Sep 17 00:00:00 2001 From: stahs <2658089+stahs@users.noreply.github.com> Date: Tue, 1 Sep 2026 02:10:29 -0500 Subject: [PATCH] Add deployment targets --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5e61dfb2164..1c16080712f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -41,7 +41,7 @@ node { stage('Build') { /* - * Run Unit tests + * Build artifact */ notifyBuild("Building..", "good") @@ -65,7 +65,7 @@ node { * Deploy */ timeout(time: 2, unit: "HOURS") { - def DEPLOY_TARGET = input message: 'Deploy to', parameters: [string(defaultValue: "${DEPLOY_TARGET}", description: 'qdr-dev, qdr-stage, qdr-prod', name: 'DEPLOY_TARGET')] + def DEPLOY_TARGET = input message: 'Deploy to', parameters: [string(defaultValue: "${DEPLOY_TARGET}", description: 'qdr-dev, dev-26, qdr-stage, stage-26, qdr-prod, prod-26', name: 'DEPLOY_TARGET')] } notifyBuild("Deploying ${ARTIFACT_ID}-${VERSION} to ${DEPLOY_TARGET}", "good")