Skip to content

Commit

Permalink
update docs action
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloLucibello committed Sep 26, 2024
1 parent 3bb5e8f commit 082f239
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
with:
version: '1.10.4'
- name: Install dependencies
run: julia --project=docs/ -e '
run: julia --project=GraphNeuralNetworks/docs/ -e '
using Pkg;
Pkg.develop([PackageSpec(path=pwd()),
Pkg.develop([PackageSpec(path=joinpath(pwd(), "GraphNeuralNetworks")),
PackageSpec(path=joinpath(pwd(), "GNNGraphs")),
PackageSpec(path=joinpath(pwd(), "GNNlib"))]);
Pkg.instantiate();'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
run: julia --project=docs/ docs/make.jl
run: julia --project=GraphNeuralNetworks/docs/ GraphNeuralNetworks/docs/make.jl

0 comments on commit 082f239

Please sign in to comment.