diff --git a/Jenkinsfile b/Jenkinsfile index afb5e0559..0423fbf13 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,18 +15,5 @@ pipeline { } } } - stage('Deploy') { - agent { - docker { - image 'liatrio/cf-cli' - } - } - steps { - withCredentials([usernamePassword(credentialsId: 'pivotal', passwordVariable: 'PASSWORD', usernameVariable: 'USERNAME')]) { - sh "cf api https://api.run.pivotal.io && cf login -u ${env.USERNAME} -p ${env.PASSWORD}" - sh 'cf push' - } - } - } } }