Update Jenkinsfile

This commit is contained in:
landry333 2020-03-30 14:21:40 -04:00 committed by GitHub
parent aa4ccf0ca2
commit 0e15175742
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
Jenkinsfile vendored
View file

@ -18,6 +18,15 @@ pipeline {
sh './mvnw package'
}
}
stage('Deploy') {
when{
branch 'master'
}
steps {
echo 'Deployment'
}
}
}
}
}