Skip to content

Commit 2b808bf

Browse files
authored
Merge pull request #576 from m-fila/local_deps
Use `[sources]` to specify local deps for documentation
2 parents 1497a24 + c711e8e commit 2b808bf

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Diff for: .github/workflows/Documentation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
version: '1'
2222
- uses: julia-actions/cache@v2
2323
- name: Install dependencies
24-
run: julia --project=docs/ -e 'using Pkg; Pkg.develop([PackageSpec(path=pwd()), PackageSpec(path=pwd() * "/lib/TimespanLogging"), PackageSpec(path=pwd() * "/lib/DaggerWebDash")]); Pkg.instantiate()'
24+
run: julia --project=docs/ -e 'using Pkg; Pkg.instantiate()'
2525
- name: Build and deploy
2626
env:
2727
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token

Diff for: docs/Project.toml

+6
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ TimespanLogging = "a526e669-04d3-4846-9525-c66122c55f63"
99

1010
[compat]
1111
Documenter = "1"
12+
julia = "1.11"
13+
14+
[sources]
15+
Dagger = {path = ".."}
16+
DaggerWebDash = {path = "../lib/DaggerWebDash"}
17+
TimespanLogging = {path = "../lib/TimespanLogging"}

0 commit comments

Comments
 (0)