Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
),
Comment on lines +42 to +45
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it would be good to remove the search entirely

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

before we removed it, but the bar was still there. Perhaps the bar would be useful if versioning worked.

brand_image = MultiDocumenter.BrandImage("", "logo.svg"),
rootpath = "/GraphNeuralNetworks.jl/"
)
Expand Down
Loading