Skip to content

Commit 89a1d8b

Browse files
committed
try dev in docs project
1 parent 3a2d8d3 commit 89a1d8b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/Documentation.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ jobs:
2525
Pkg.develop(map(path ->Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
2626
'
2727
- name: Install dependencies
28-
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
28+
run: julia --project=docs/ -e '
29+
using Pkg;
30+
Pkg.develop(PackageSpec(path=pwd()));
31+
Pkg.develop(map(path ->Pkg.PackageSpec.(;path="$(@__DIR__)/lib/$(path)"), readdir("./lib")));
32+
Pkg.instantiate()'
2933
- name: Build and deploy
3034
env:
3135
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token

0 commit comments

Comments
 (0)