Skip to content

Commit 289c7f0

Browse files
workflow
1 parent 5d89449 commit 289c7f0

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/docs.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,15 @@ jobs:
1515
- uses: julia-actions/setup-julia@latest
1616
with:
1717
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
2219
shell: julia --project=docs/ {0}
2320
run: |
2421
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

0 commit comments

Comments
 (0)