This commit is contained in:
2020-03-02 22:47:41 +03:00
parent b72fecbbec
commit 7d73129731
11 changed files with 76 additions and 61 deletions

32
predeploy/Jenkinsfile vendored
View File

@@ -1,22 +1,18 @@
stage ('predeploy') {
steps {
echo 'checking tag'
script {
if (sh(returnStdout: true, script: "git tag --contains").trim()) {
def tag = sh(returnStdout: true, script: "git tag --contains").trim()
echo 'found tag ' + tag
sh "cd dist ; echo 'mkdir ${tag}; mv ./master/* ./${tag}; rm -r -d ./master; rm version.sh' > version.sh"
} else {
echo 'tag not found'
sh "cd dist ; echo 'rm version.sh' > version.sh"
}
}
}
stage ('archiving') {
steps {
// Archive the build output artifacts.
archiveArtifacts artifacts: 'dist/*'
echo 'checking tag'
script {
if (sh(returnStdout: true, script: "git tag --contains").trim()) {
def tag = sh(returnStdout: true, script: "git tag --contains").trim()
echo 'found tag ' + tag
sh "cd dist ; echo 'mkdir ${tag}; mv ./master/* ./${tag}; rm -r -d ./master; rm version.sh' > version.sh"
} else {
echo 'tag not found'
sh "cd dist ; echo 'rm version.sh' > version.sh"
}
}
}
stage ('archiving') {
// Archive the build output artifacts.
archiveArtifacts artifacts: 'dist/*'
}