diff --git a/Jenkinsfile b/Jenkinsfile index 1c0f88a..333ca4f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,5 +2,5 @@ stage 'Step 1: Test' build job: 'Service Testing/Unit testing/Payment Service Test', parameters: [[$class: 'StringParameterValue', name: 'Branch', value: '*/master']] stage 'Step 2: Create Production Image' - build job: 'Service Deployment/Create Production Images', parameters: [[$class: 'StringParameterValue', name: 'Repo', value: 'https://github.com/UKForeignOffice/loi-payment-service.git/'], [$class: 'StringParameterValue', name: 'Branch', value: 'master'], [$class: 'StringParameterValue', name: 'Tag', value: 'payment-service-prod'], [$class: 'StringParameterValue', name: 'Container', value: 'payment-service']] + build job: 'Service Deployment/Create Production Images', parameters: [[$class: 'StringParameterValue', name: 'Repo', value: 'git@github-project-payment:UKForeignOffice/loi-payment-service.git'], [$class: 'StringParameterValue', name: 'Branch', value: 'master'], [$class: 'StringParameterValue', name: 'Tag', value: 'payment-service-prod'], [$class: 'StringParameterValue', name: 'Container', value: 'payment-service']] }