diff --git a/Jenkinsfile b/Jenkinsfile index c838459..fa96b88 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,7 +22,7 @@ pipeline { git( url: httpUrl, credentialsId: 'gitlab-jenkins-localhost', - branch: 'test' + branch: 'vapor/production' ) } } @@ -44,7 +44,7 @@ pipeline { script{ String gitCommitMessage = getCommitMessage() println("GIT CommitMessage: " + gitCommitMessage) - sh "vendor/bin/vapor deploy staging --message='${gitCommitMessage}'" + sh "vendor/bin/vapor deploy production --message='${gitCommitMessage}'" } } }