Deploy to packages.libreccm.org

master
Jens Pelzetter 2022-10-11 19:51:40 +02:00
parent 8ca90bb3a4
commit 6b9116dc41
1 changed files with 10 additions and 1 deletions

11
Jenkinsfile vendored
View File

@ -11,7 +11,7 @@ pipeline {
sh 'mvn -e clean package' sh 'mvn -e clean package'
} }
} }
} }
stage("Analyse") { stage("Analyse") {
steps { steps {
dir('') { dir('') {
@ -19,6 +19,15 @@ pipeline {
} }
} }
} }
stage("Deploy") {
steps {
dir('') {
configFileProvider([configFile(fileId: 'scientificcms-packages-deploy', variable: 'MAVEN_SETTINGS')]) {
sh 'mvn -U -s "$MAVEN_SETTINGS" -e package deploy'
}
}
}
}
} }
post { post {
success { success {