From 14b6d95e4aa1f7a22ed12c5e10778dff320eaf1f Mon Sep 17 00:00:00 2001 From: Kevan Holdaway Date: Mon, 5 Aug 2019 15:06:34 -0400 Subject: [PATCH] fix(build): issues/60 jenkins file for branded UI (#67) --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f012eedb..907c2f90 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,6 @@ pipeline { agent { label 'f28-os' } environment { - qpc_version = "${params.version_name}" image_name = "quipucords-ui:${qpc_version}" tarfile = "quipucords-ui.${qpc_version}.tar" @@ -62,7 +61,7 @@ pipeline { } stage('Build Client') { steps { - sh "yarn build" + sh "yarn build${UI_BUILD_FLAGS}" } } stage('Distribute Client Build') {