Skip to content

Commit 2f7bd7c

Browse files
authored
Add GitHub Actions and Gradle Publish versions
1 parent 3a09dfd commit 2f7bd7c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

buildSrc/src/main/groovy/org/grails/documentation/DownloadPage.groovy

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ class DownloadPage {
3939
String redisVersion = '5.0.0-RC2'
4040
String quartzVersion = '4.0.0-RC2'
4141
String springSecurityVersion = '7.0.0-RC2'
42+
String grailsGithubActionsVersion = '1.0.0'
43+
String grailsGradlePublishVersion = '0.0.1'
4244

4345
StringWriter writer = new StringWriter()
4446
MarkupBuilder html = new MarkupBuilder(writer)
@@ -82,6 +84,16 @@ class DownloadPage {
8284
a(href: sourceUrl(quartzVersion, 'grails-quartz', '.sha512', 'quartz'), 'SHA512')
8385
a(href: sourceUrl(quartzVersion, 'grails-quartz', '.asc', 'quartz'), 'ASC')
8486
}
87+
li {
88+
a(href: sourceUrl(quartzVersion, 'grails-github-actions', '', 'actions'), "Grails GitHub Actions ${grailsGithubActionsVersion} Source")
89+
a(href: sourceUrl(quartzVersion, 'grails-github-actions', '.sha512', 'actions'), 'SHA512')
90+
a(href: sourceUrl(quartzVersion, 'grails-github-actions', '.asc', 'actions'), 'ASC')
91+
}
92+
li {
93+
a(href: sourceUrl(quartzVersion, 'grails-publish', '', 'grails-publish'), "Grails Gradle Publish Plugin ${grailsGradlePublishVersion} Source")
94+
a(href: sourceUrl(quartzVersion, 'grails-publish', '.sha512', 'grails-publish'), 'SHA512')
95+
a(href: sourceUrl(quartzVersion, 'grails-publish', '.asc', 'grails-publish'), 'ASC')
96+
}
8597
} else {
8698
li {
8799
a(href: "https://github.com/apache/grails-forge/releases/download/v${version}/grails-cli-${version}.zip", 'Binary')
@@ -100,6 +112,12 @@ class DownloadPage {
100112
li {
101113
a(href: "https://github.com/apache/grails-quartz/releases/tag/v${quartzVersion}", "Grails Quartz ${quartzVersion} Plugin Release Notes")
102114
}
115+
li {
116+
a(href: "https://github.com/apache/grails-github-actions/releases/tag/v${grailsGithubActionsVersion}", "Grails GitHub Actions ${grailsGithubActionsVersion} Release Notes")
117+
}
118+
li {
119+
a(href: "https://github.com/apache/incubator-grails-gradle-publish/releases/tag/v${grailsGradlePublishVersion}", "Grails Gradle Publish Plugin ${grailsGradlePublishVersion} Release Notes")
120+
}
103121
}
104122
}
105123
}

0 commit comments

Comments
 (0)