Skip to content

Commit

Permalink
Add version selector (#543)
Browse files Browse the repository at this point in the history
* Test

* Fix
  • Loading branch information
aurorarossi authored Dec 5, 2024
1 parent e260ff9 commit c6a489f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
3 changes: 2 additions & 1 deletion GNNGraphs/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,5 @@ makedocs(;

deploydocs(repo = "github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
devbranch = "master",
dirname = "GNNGraphs")
dirname = "GNNGraphs",
tag_prefix="GNNGraphs-")
3 changes: 2 additions & 1 deletion GNNLux/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,5 @@ rm(joinpath(@__DIR__, "src/GNNlib"), force=true, recursive=true)

deploydocs(repo = "github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
devbranch = "master",
dirname = "GNNLux")
dirname = "GNNLux",
tag_prefix="GNNLux-")
5 changes: 4 additions & 1 deletion GNNlib/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@ makedocs(;
]
)

deploydocs(;repo = "github.com/JuliaGraphs/GraphNeuralNetworks.jl.git", devbranch = "master", dirname = "GNNlib")
deploydocs(;repo = "github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
devbranch = "master",
dirname = "GNNlib",
tag_prefix="GNNlib-")
3 changes: 2 additions & 1 deletion GraphNeuralNetworks/docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,5 @@ rm(joinpath(@__DIR__, "src/GNNlib"), force=true, recursive=true)

deploydocs(repo = "github.com/JuliaGraphs/GraphNeuralNetworks.jl.git",
devbranch = "master",
dirname= "GraphNeuralNetworks")
dirname= "GraphNeuralNetworks",
tag_prefix="GraphNeuralNetworks-")
9 changes: 4 additions & 5 deletions docs/make-multi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,10 @@ outpath = joinpath(@__DIR__, "build")
MultiDocumenter.make(
outpath,
docs;
search_engine = MultiDocumenter.SearchConfig(),
# search_engine = MultiDocumenter.SearchConfig(
# index_versions = ["stable"],
# engine = MultiDocumenter.FlexSearch
# ),
search_engine = MultiDocumenter.SearchConfig(
index_versions = ["stable"],
engine = MultiDocumenter.FlexSearch
),
brand_image = MultiDocumenter.BrandImage("", "logo.svg"),
rootpath = "/GraphNeuralNetworks.jl/"
)
Expand Down

0 comments on commit c6a489f

Please sign in to comment.