Skip to content

Commit 62fd112

Browse files
committed
Add Pkg.develop() back to Documenter.yml workflow
Since the docs are being built on Julia 1.10, they don't recognized the `[sources]` section in Project.toml, so the package has to be `]dev`'d in the docs workflow
1 parent 04dfa78 commit 62fd112

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/Documenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: julia-actions/cache@v2
2323
- name: Install dependencies
2424
shell: julia --color=yes --project=docs {0}
25-
run: 'using Pkg; Pkg.instantiate()'
25+
run: 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2626
- name: Build and deploy
2727
run: julia --color=yes --project=docs docs/make.jl
2828
env:

0 commit comments

Comments
 (0)