Update Jenkinsfile

This commit is contained in:
Noah Francis 2020-03-16 09:47:08 -04:00 committed by GitHub
parent 1f4aacd5e3
commit fcb66af79b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Jenkinsfile vendored
View file

@ -17,6 +17,9 @@ pipeline {
}
}
stage('Deploy') {
when {
branch 'master'
}
steps {
sh './mvnw deploy'
}