File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,15 @@ jobs:
15
15
- uses : julia-actions/setup-julia@latest
16
16
with :
17
17
version : ' 1.10.4'
18
- - name : Install dependencies, build and deploy
19
- env :
20
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
21
- DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
18
+ - name : Install dependencies
22
19
shell : julia --project=docs/ {0}
23
20
run : |
24
21
using Pkg
25
- pkg"dev ./ ./GNNGraphs"
26
- include("docs/make.jl")
22
+ Pkg.develop(path="./GNNGraphs")
23
+ Pkg.develop(path=".")
24
+ Pkg.instantiate()
25
+ - name : Build and deploy
26
+ env :
27
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
28
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
29
+ run : julia --project=docs/ docs/make.jl
You can’t perform that action at this time.
0 commit comments