Fixed Jenkinsfile-publish-sources

This commit is contained in:
Matthias Koefferlein 2018-06-24 12:19:21 +02:00
parent 5b73d1d796
commit 03cba76535
1 changed files with 9 additions and 1 deletions

View File

@ -2,6 +2,14 @@
@Library("osconfig") _
node("master") {
publish_sources(BRANCH_NAME)
stage("Checkout sources") {
checkout scm
}
stage("Publish sources") {
publish_sources(BRANCH_NAME)
}
}