This commit is contained in:
Primakov Alexandr Alexandrovich 2020-12-24 19:46:47 +03:00
parent 85f01f43d5
commit 8124bd6446

View File

@ -1,4 +1,17 @@
stage ('production build') {
sh 'npm run build:prod';
sh 'ls dist';
script {
def tag = sh(returnStdout: true, script: "git tag --contains").trim()
def branchName = sh(returnStdout: true, script: "git rev-parse --abbrev-ref HEAD").trim()
if (tag) {
echo 'found tag ' + tag
def tagNoV = tag.substring(1)
sh "VERSION=${tagNoV} npm run build:prod";
} else {
echo 'tag not found'
sh "VERSION=master npm run build:prod"
}
sh 'ls dist';
}
}