Skip to content

Commit

Permalink
Attempt to fix documentation deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
kescobo committed Oct 28, 2021
1 parent 2cafaf2 commit 64dea24
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
using Documenter, BiobakeryUtils

makedocs(
format = Documenter.HTML(
prettyurls = get(ENV, "CI", nothing) == "true",
edit_link="main",
canonical="http://docs.ecojulia.org/BiobakeryUtils.jl/stable/"),
sitename = "BiobakeryUtils.jl",
pages = [
"BiobakeryUtils" => "index.md",
"Getting Started" => "gettingstarted.md",
"Working with MetaPhlAn" => "metaphlan.md",
"Working with HUMAnN" => "humann.md",
"Microbiome.jl Docstrings" => "microbiome.md",
],
authors = "Kevin Bonham, PhD"
)
],
authors = "Kevin Bonham, PhD",
format = Documenter.HTML(
prettyurls = get(ENV, "CI", nothing) == "true",
edit_link="main",
canonical="http://docs.ecojulia.org/BiobakeryUtils.jl/stable/"),
)

deploydocs(
repo = "github.com/BioJulia/BiobakeryUtils.jl.git",
repo = "github.com/EcoJulia/BiobakeryUtils.jl.git",
push_preview=true,
devbranch="main"
)

0 comments on commit 64dea24

Please sign in to comment.