Update Jenkinsfile

This commit is contained in:
n-sheikh 2020-03-30 18:38:26 -04:00 committed by GitHub
parent 89bb0f1514
commit 74b757e7ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
Jenkinsfile vendored
View file

@ -18,5 +18,14 @@ pipeline{
sh './mvnw install'
}
}
stage('master-branch-stuff'){
agent any
when{
branch 'master'
}
steps {
sh './mvnw deploy'
}
}
}
}