File tree Expand file tree Collapse file tree 5 files changed +3
-104
lines changed
main/groovy/io/spring/gradle/convention
test/resources/samples/showcase Expand file tree Collapse file tree 5 files changed +3
-104
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff 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}
Load Diff This file was deleted.
Original file line number Diff line number Diff 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 ) {
Original file line number Diff line number Diff 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- },
4333schema : {
4434 stage(' Deploy Schema' ) {
4535 node {
@@ -49,4 +39,4 @@ schema: {
4939 }
5040 }
5141 }
52- }
42+ }
You can’t perform that action at this time.
0 commit comments