-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmake.jl
30 lines (27 loc) · 1.02 KB
/
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
using Documenter, RemoteS
makedocs(
modules = [RemoteS],
format = Documenter.HTML(; prettyurls = get(ENV, "CI", nothing) == "true", assets = ["assets/custom.css"]),
authors = "Joaquim Luis",
sitename = "RemoteS.jl",
pages = Any[
"Gallery" => [
"Aqua orbits" => "gallery/Aqua_orbits/remotes_sat_tracks.md",
"Aqua SST" => "gallery/Aqua_sst/remotes_L2_SST.md",
"Cloud-Native HLS dat" => "gallery/HLS/cloud-native-hls-data.md",
"Landsat 8 images" => "gallery/L8cube_img/remotes_L8_cube_img.md",
"Landsat 8 NDVI" => "gallery/L8cube_ndvi/remotes_L8_NDVI.md",
],
"Index" => "index.md"],
# strict = true,
# clean = true,
# checkdocs = :exports,
)
deploydocs(
repo = "github.com/GenericMappingTools/RemoteS.jl.git",
target = "build",
devbranch = "main",
devurl = "dev",
#versions = ["stable" => "v^", "v#.#", devurl => devurl],
push_preview = true
)