From 64dea245a2b3b221064d3364edc5394a71d9a171 Mon Sep 17 00:00:00 2001 From: Kevin Bonham Date: Thu, 28 Oct 2021 10:17:04 -0400 Subject: [PATCH] Attempt to fix documentation deployment --- docs/make.jl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 32133e6..6cd3316 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,10 +1,6 @@ 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", @@ -12,12 +8,16 @@ makedocs( "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" )