We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eab5212 + 18e4e4c commit d4f7936Copy full SHA for d4f7936
.github/workflows/CI.yml
@@ -57,6 +57,11 @@ jobs:
57
version: '1'
58
- uses: julia-actions/cache@v2
59
- uses: julia-actions/julia-buildpkg@v1
60
+ - run: |
61
+ julia --project=docs -e '
62
+ using Pkg;
63
+ Pkg.develop(PackageSpec(path=pwd()));
64
+ Pkg.instantiate()'
65
- uses: julia-actions/julia-docdeploy@v1
66
env:
67
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
docs/servedocs.jl
@@ -6,8 +6,9 @@
6
const REPO_ROOT = dirname(@__DIR__)
7
8
# Make sure the docs environment is active and instantiated
9
-import Pkg
+using Pkg
10
Pkg.activate(@__DIR__)
11
+Pkg.develop(PackageSpec(path=REPO_ROOT))
12
Pkg.instantiate()
13
14
# Communicate with make.jl that docs are build in live mode
0 commit comments