From e03065a7eb95c54a8858a1d81da817a070528379 Mon Sep 17 00:00:00 2001 From: emanuel-kopp Date: Tue, 9 Jan 2024 18:29:12 +0100 Subject: [PATCH] deploying documentation --- docs/make.jl | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 915d497..91c464c 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,15 +1,21 @@ +using Pkg +Pkg.activate(".") + using Documenter using Labelyst makedocs( sitename = "Labelyst", format = Documenter.HTML(), - modules = [Labelyst] + modules = [Labelyst], + pages=[ + "Home" => "index.md" + ] ) # Documenter can also automatically deploy documentation to gh-pages. # See "Hosting Documentation" and deploydocs() in the Documenter manual # for more information. -deploydocs( +deploydocs(; repo="github.com/emanuel-kopp/Labelyst.jl.git" )