Remove 'Deploy Docs' stage.

This commit is contained in:
John Blum
2018-03-22 14:49:50 -07:00
parent 87f2acada9
commit 2a5cb36398

10
Jenkinsfile vendored
View File

@@ -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"
}
}
}
}
}
}