prod-max
This commit is contained in:
parent
85f01f43d5
commit
8124bd6446
17
build/prod/Jenkinsfile
vendored
17
build/prod/Jenkinsfile
vendored
@ -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';
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user