From 2a5cb363986b91b4e65425d82da5bc95e6d207c0 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 22 Mar 2018 14:49:50 -0700 Subject: [PATCH] Remove 'Deploy Docs' stage. --- Jenkinsfile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1bfef6a2..824d06b2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -61,16 +61,6 @@ try { } } } - }, - docs: { - stage('Deploy Docs') { - node { - checkout scm - withCredentials([file(credentialsId: 'docs.spring.io-jenkins_private_ssh_key', variable: 'DEPLOY_SSH_KEY')]) { - sh "./gradlew deployDocs -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME --refresh-dependencies --no-daemon --stacktrace" - } - } - } } } }