Added auto doc deploy #2
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
@ -49,17 +49,17 @@ pipeline {
|
|||||||
anyOf {
|
anyOf {
|
||||||
branch 'stable'
|
branch 'stable'
|
||||||
branch 'unstable'
|
branch 'unstable'
|
||||||
tag
|
buildingTag()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sshagent(credentials: ['1cf72f47-b70c-4f90-a958-020956099d19']) {
|
sshagent(credentials: ['1cf72f47-b70c-4f90-a958-020956099d19']) {
|
||||||
scipt {
|
scipt {
|
||||||
SUB_PATH="""${sh(
|
def SUB_PATH = """${sh(
|
||||||
returnStdout: true,
|
returnStdout: true,
|
||||||
script: 'echo "${GIT_BRANCH#*/}"'
|
script: 'echo "${GIT_BRANCH#*/}"'
|
||||||
)}""".trim()
|
)}""".trim()
|
||||||
if (tag) {
|
if (buildingTag()) {
|
||||||
SUB_PATH="${env.TAG_NAME}"
|
SUB_PATH="${env.TAG_NAME}"
|
||||||
}
|
}
|
||||||
withEnv(["SUB_PATH=${SUB_PATH}"]) {
|
withEnv(["SUB_PATH=${SUB_PATH}"]) {
|
||||||
|
Loading…
Reference in New Issue
Block a user