mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
20 lines
370 B
Groovy
20 lines
370 B
Groovy
plugins {
|
|
id 'org.ajoberstar.github-pages'
|
|
id 'org.asciidoctor.gradle.asciidoctor'
|
|
id 'org.asciidoctor.convert'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
githubPages {
|
|
repoUri = 'git@github.com:apollo-rsps/apollo-rsps.github.io'
|
|
targetBranch = 'master'
|
|
|
|
pages {
|
|
from "$buildDir/asciidoc/html5"
|
|
}
|
|
}
|
|
|
|
prepareGhPages.dependsOn(asciidoctor) |