Skip to content

Commit

Permalink
Update make.jl for documentation generation and add deploydocs options
Browse files Browse the repository at this point in the history
  • Loading branch information
camilogarciabotero committed Apr 7, 2024
1 parent e915b6c commit b802e70
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,15 @@ makedocs(;
sitename = "BioMarkovChains.jl",
format = fmt,
pages = pgs,
warnonly = true
source = "src",
build = "build",
warnonly = true,
)

deploydocs(; repo = "https://github.com/camilogarciabotero/BioMarkovChains.jl", devbranch = "main")
deploydocs(;
repo = "https://github.com/camilogarciabotero/BioMarkovChains.jl",
devbranch = "main",
target="build", # this is where Vitepress stores its output
branch = "gh-pages",
push_preview = true
)

0 comments on commit b802e70

Please sign in to comment.