Skip to content

Commit 6d8076f

Browse files
committed
Merge branch '3.5.x'
2 parents cdee6c9 + 93f713e commit 6d8076f

File tree

5 files changed

+3
-104
lines changed

5 files changed

+3
-104
lines changed

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

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,9 @@ jobs:
2929
should-deploy-artifacts: ${{ needs.build.outputs.should-deploy-artifacts }}
3030
default-publish-milestones-central: true
3131
secrets: inherit
32-
deploy-docs:
33-
name: Deploy Docs
34-
needs: [ build ]
35-
uses: spring-io/spring-security-release-tools/.github/workflows/deploy-docs.yml@v1
36-
with:
37-
should-deploy-docs: ${{ needs.build.outputs.should-deploy-artifacts }}
38-
secrets: inherit
3932
perform-release:
4033
name: Perform Release
41-
needs: [ deploy-artifacts, deploy-docs ]
34+
needs: [ deploy-artifacts ]
4235
uses: spring-io/spring-security-release-tools/.github/workflows/perform-release.yml@v1
4336
with:
4437
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
@@ -68,6 +68,6 @@ springRelease {
6868
weekOfMonth = 3
6969
dayOfWeek = 2
7070
referenceDocUrl = "https://docs.spring.io/spring-session/reference/{version}/index.html"
71-
apiDocUrl = "https://docs.spring.io/spring-session/docs/{version}/api/"
71+
apiDocUrl = "https://docs.spring.io/spring-session/reference/{version}/api/java/index.html"
7272
replaceSnapshotVersionInReferenceDocUrl = true
7373
}

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

Lines changed: 0 additions & 83 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)