From 5e7df3b8b3f60d396575d7b7bcd75a409be42731 Mon Sep 17 00:00:00 2001 From: primakov Date: Tue, 9 Apr 2024 23:57:42 +0300 Subject: [PATCH] fix not master branch build:prod --- build/prod/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/prod/Jenkinsfile b/build/prod/Jenkinsfile index 95e6ad9..6b5f233 100644 --- a/build/prod/Jenkinsfile +++ b/build/prod/Jenkinsfile @@ -9,7 +9,7 @@ stage ('production build') { sh "VERSION=${tagNoV} npm run build:prod"; } else { echo 'tag not found' - sh "VERSION=master npm run build:prod" + sh "VERSION=${branchName} npm run build:prod" } sh 'ls dist';