Adds auto-deploy

This commit is contained in:
Kristian Knarvik 2022-11-26 14:51:22 +01:00
parent ccd91fdf1b
commit 741898312e

2
Jenkinsfile vendored
View File

@ -19,7 +19,7 @@ pipeline {
stage('Deploy') {
steps {
echo 'Deploying...'
sh 'mvn verify -Dmaven.test.skip=true'
sh 'mvn verify -Dmaven.test.skip=true & mvn deploy'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}