Skip to content

Commit 1e59f2d

Browse files
committed
fix docs build
1 parent b859bbf commit 1e59f2d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/Documenter.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Install dependencies
16-
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.build(;verbose=true)'
16+
shell: julia --color=yes --project=docs/ {0}
17+
run: |
18+
using Pkg
19+
Pkg.develop(PackageSpec(path="lib/MPIPreferences"))
20+
Pkg.develop(PackageSpec(path=pwd()))
21+
Pkg.instantiate()
22+
Pkg.build(;verbose=true)
1723
- name: Build and deploy
1824
env:
1925
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)