mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Use sbt-github-pages plugin
This makes it easier to use within a gitub action.
This commit is contained in:
parent
4f03705d88
commit
bd093ee97d
12
build.sbt
12
build.sbt
@ -1,6 +1,5 @@
|
|||||||
import com.github.eikek.sbt.openapi._
|
import com.github.eikek.sbt.openapi._
|
||||||
import scala.sys.process._
|
import scala.sys.process._
|
||||||
import com.typesafe.sbt.site.SitePlugin
|
|
||||||
import com.typesafe.sbt.SbtGit.GitKeys._
|
import com.typesafe.sbt.SbtGit.GitKeys._
|
||||||
import docspell.build._
|
import docspell.build._
|
||||||
|
|
||||||
@ -565,18 +564,15 @@ val restserver = project
|
|||||||
val website = project
|
val website = project
|
||||||
.in(file("website"))
|
.in(file("website"))
|
||||||
.disablePlugins(RevolverPlugin, ReleasePlugin)
|
.disablePlugins(RevolverPlugin, ReleasePlugin)
|
||||||
.enablePlugins(ZolaPlugin, GhpagesPlugin)
|
.enablePlugins(ZolaPlugin, GitHubPagesPlugin)
|
||||||
.settings(sharedSettings)
|
.settings(sharedSettings)
|
||||||
.settings(
|
.settings(
|
||||||
name := "docspell-website",
|
name := "docspell-website",
|
||||||
publishArtifact := false,
|
publishArtifact := false,
|
||||||
publish / skip := true,
|
publish / skip := true,
|
||||||
ghpagesNoJekyll := true,
|
gitHubPagesOrgName := "eikek",
|
||||||
// the ghpages plugins works together with the site plugin (its a dependency)
|
gitHubPagesRepoName := "docspell",
|
||||||
// to make it publish the zola generated site, override their mappings with the zola output
|
gitHubPagesSiteDir := zolaOutputDir.value,
|
||||||
SitePlugin.autoImport.makeSite / mappings :=
|
|
||||||
Path.selectSubpaths(zolaOutputDir.value, _ => true).toSeq,
|
|
||||||
git.remoteRepo := "git@github.com:eikek/docspell",
|
|
||||||
Compile / resourceGenerators += Def.task {
|
Compile / resourceGenerators += Def.task {
|
||||||
val templateOut = baseDirectory.value / "site" / "templates" / "shortcodes"
|
val templateOut = baseDirectory.value / "site" / "templates" / "shortcodes"
|
||||||
val staticOut = baseDirectory.value / "site" / "static" / "openapi"
|
val staticOut = baseDirectory.value / "site" / "static" / "openapi"
|
||||||
|
@ -3,7 +3,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
|
|||||||
addSbtPlugin("com.github.eikek" % "sbt-openapi-schema" % "0.7.1")
|
addSbtPlugin("com.github.eikek" % "sbt-openapi-schema" % "0.7.1")
|
||||||
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.0.15")
|
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.0.15")
|
||||||
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
|
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
|
||||||
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
|
addSbtPlugin("io.kevinlee" % "sbt-github-pages" % "0.5.0")
|
||||||
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.1")
|
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.1")
|
||||||
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1")
|
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1")
|
||||||
addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")
|
addSbtPlugin("io.spray" % "sbt-revolver" % "0.9.1")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user