prod-max
This commit is contained in:
parent
85f01f43d5
commit
8124bd6446
15
build/prod/Jenkinsfile
vendored
15
build/prod/Jenkinsfile
vendored
@ -1,4 +1,17 @@
|
|||||||
stage ('production build') {
|
stage ('production build') {
|
||||||
sh 'npm run build:prod';
|
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';
|
sh 'ls dist';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user