Skip to content

Commit fbe50d6

Browse files
committed
fix: point CI to appropriate package directories
1 parent 7962f78 commit fbe50d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/documentation.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
shell: julia --color=yes --project=docs {0}
2626
run: |
2727
using Pkg
28-
Pkg.develop(PackageSpec(path=pwd()))
28+
for pkg in ["GrothAlgebra", "GrothCurves", "GrothProofs"]
29+
Pkg.develop(path=joinpath(pwd(), pkg))
30+
end
2931
Pkg.instantiate()
3032
- name: Build and deploy
3133
run: julia --color=yes --project=docs docs/make.jl

0 commit comments

Comments
 (0)