diff --git a/Jenkinsfile b/Jenkinsfile index 9ee75ceb6..8bdddba44 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,15 +20,12 @@ pipeline { } } stage('Deploy') { - steps{ - echo "Branch name: ${env.BRANCH_NAME}" - } when { branch 'master' } steps { - echo "Merge to master" - sh 'git pull' + echo "Branch name: ${env.BRANCH_NAME}" + sh './mvnw deploy' } } }