-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
32 lines (27 loc) · 908 Bytes
/
make.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using Documenter
# Print `@debug` statements (https://github.com/JuliaDocs/Documenter.jl/issues/955)
if haskey(ENV, "GITHUB_ACTIONS")
ENV["JULIA_DEBUG"] = "Documenter"
end
using AbstractGPsMakie
DocMeta.setdocmeta!(
AbstractGPsMakie, :DocTestSetup, :(using AbstractGPsMakie); recursive=true
)
makedocs(;
modules=[AbstractGPsMakie],
authors="David Widmann",
repo="https://github.com/JuliaGaussianProcesses/AbstractGPsMakie.jl/blob/{commit}{path}#{line}",
sitename="AbstractGPsMakie.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://juliagaussianprocesses.github.io/AbstractGPsMakie.jl",
assets=String[],
),
pages=["Home" => "index.md", "api.md"],
checkdocs=:exports,
)
deploydocs(;
repo="github.com/JuliaGaussianProcesses/AbstractGPsMakie.jl",
push_preview=true,
devbranch="main",
)