Skip to content

Commit de062c6

Browse files
committed
Merge branch '6.5.x'
2 parents ffa89b7 + a79354e commit de062c6

File tree

5 files changed

+3
-103
lines changed

5 files changed

+3
-103
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,6 @@ jobs:
3535
should-deploy-artifacts: ${{ needs.build.outputs.should-deploy-artifacts }}
3636
default-publish-milestones-central: true
3737
secrets: inherit
38-
deploy-docs:
39-
name: Deploy Docs
40-
needs: [ build ]
41-
uses: spring-io/spring-security-release-tools/.github/workflows/deploy-docs.yml@v1
42-
with:
43-
should-deploy-docs: ${{ needs.build.outputs.should-deploy-artifacts }}
44-
secrets: inherit
4538
deploy-schema:
4639
name: Deploy Schema
4740
needs: [ build ]
@@ -51,7 +44,7 @@ jobs:
5144
secrets: inherit
5245
perform-release:
5346
name: Perform Release
54-
needs: [ deploy-artifacts, deploy-docs, deploy-schema ]
47+
needs: [ deploy-artifacts, deploy-schema ]
5548
uses: spring-io/spring-security-release-tools/.github/workflows/perform-release.yml@v1
5649
with:
5750
should-perform-release: ${{ needs.deploy-artifacts.outputs.artifacts-deployed }}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ springRelease {
4242
weekOfMonth = 3
4343
dayOfWeek = 1
4444
referenceDocUrl = "https://docs.spring.io/spring-security/reference/{version}/index.html"
45-
apiDocUrl = "https://docs.spring.io/spring-security/site/docs/{version}/api/"
45+
apiDocUrl = "https://docs.spring.io/spring-security/reference/{version}/api/java/index.html"
4646
replaceSnapshotVersionInReferenceDocUrl = true
4747
}
4848

buildSrc/src/main/groovy/io/spring/gradle/convention/DeployDocsPlugin.groovy

Lines changed: 0 additions & 82 deletions
This file was deleted.

buildSrc/src/main/groovy/io/spring/gradle/convention/DocsPlugin.groovy

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public class DocsPlugin implements Plugin<Project> {
1717

1818
PluginManager pluginManager = project.getPluginManager();
1919
pluginManager.apply(BasePlugin);
20-
pluginManager.apply(DeployDocsPlugin);
2120
pluginManager.apply(JavadocApiPlugin);
2221

2322
Task docsZip = project.tasks.create('docsZip', Zip) {

buildSrc/src/test/resources/samples/showcase/Jenkinsfile

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,6 @@ ossrh: {
3030
}
3131
}
3232
},
33-
docs: {
34-
stage('Deploy Docs') {
35-
node {
36-
checkout scm
37-
withCredentials([file(credentialsId: 'docs.spring.io-jenkins_private_ssh_key', variable: 'DEPLOY_SSH_KEY')]) {
38-
sh "./gradlew deployDocs -PdeployDocsSshKeyPath=$DEPLOY_SSH_KEY -PdeployDocsSshUsername=$SPRING_DOCS_USERNAME --refresh-dependencies --no-daemon --stacktrace"
39-
}
40-
}
41-
}
42-
},
4333
schema: {
4434
stage('Deploy Schema') {
4535
node {
@@ -49,4 +39,4 @@ schema: {
4939
}
5040
}
5141
}
52-
}
42+
}

0 commit comments

Comments
 (0)