Skip to content

Commit 188d08e

Browse files
committed
ok
1 parent 66a0453 commit 188d08e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/multidocs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,18 @@ jobs:
2323
- name: Build GNNGraphs docs
2424
run:
2525
julia --project=GNNGraphs/docs/ -e '
26+
using Pkg;
27+
Pkg.instantiate();
2628
include("GNNGraphs/docs/make.jl")'
2729
env:
2830
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
2931
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
3032

3133
- name: Build GNNlib docs
3234
run: julia --project=GNNlib/docs/ -e '
33-
include("GNNlib/docs/make.jl")'
35+
using Pkg;
36+
Pkg.instantiate();
37+
include("GNNlib/docs/make.jl")'
3438
env:
3539
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
3640
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 commit comments

Comments
 (0)