Skip to content

Commit 7941b0a

Browse files
committed
Back to previous urls and update yml
1 parent 692e885 commit 7941b0a

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/multidocs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919

2020
# Build GNNGraphs docs
2121
- name: Install dependencies for GNNGraphs
22-
run: julia --project=GNNGraphs/docs/ -e '
22+
run:
23+
git config --global init.defaultBranch test-multidocs
24+
julia --project=GNNGraphs/docs/ -e '
2325
using Pkg;
2426
Pkg.develop(PackageSpec(path=joinpath(pwd(), "GNNGraphs")));
2527
Pkg.instantiate();'

docs/make-multi.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,27 @@ docs = [
1818
upstream = joinpath(dirname(@__DIR__),"GraphNeuralNetworks", "docs", "build"),
1919
path = "graphneuralnetworks",
2020
name = "GraphNeuralNetworks",
21-
giturl = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git"),
21+
fix_canonical_url = false),
2222
MultiDocumenter.MultiDocRef(
2323
upstream = joinpath(dirname(@__DIR__), "GNNGraphs", "docs", "build"),
2424
path = "gnngraphs",
2525
name = "GNNGraphs",
26-
giturl = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git"),
26+
fix_canonical_url = false),
2727
MultiDocumenter.MultiDocRef(
2828
upstream = joinpath(dirname(@__DIR__), "GNNlib", "docs", "build"),
2929
path = "gnnlib",
3030
name = "GNNlib",
31-
giturl = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git"),
31+
fix_canonical_url = false),
3232
MultiDocumenter.MultiDocRef(
3333
upstream = joinpath(dirname(@__DIR__), "GNNLux", "docs", "build"),
3434
path = "gnnlux",
3535
name = "GNNLux",
36-
giturl = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git"),
36+
fix_canonical_url = false),
3737
MultiDocumenter.MultiDocRef(
3838
upstream = joinpath(dirname(@__DIR__), "tutorials", "docs", "build"),
3939
path = "tutorials",
4040
name = "tutorials",
41-
giturl = "https://github.com/JuliaGraphs/GraphNeuralNetworks.jl.git"),
41+
fix_canonical_url = false),
4242
]
4343

4444
outpath = joinpath(@__DIR__, "build")

0 commit comments

Comments
 (0)