From 5ee3160d48f467b96b3e9cc32b25b97904ba5ab0 Mon Sep 17 00:00:00 2001 From: Tim Holy Date: Tue, 23 Jul 2024 11:04:30 -0500 Subject: [PATCH] fix --- .github/workflows/Documenter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Documenter.yml b/.github/workflows/Documenter.yml index 59da4eaf..b52d7c0d 100644 --- a/.github/workflows/Documenter.yml +++ b/.github/workflows/Documenter.yml @@ -29,7 +29,7 @@ jobs: # To access the developer tools from within a package's environment, they should be in the default environment - run: julia -e 'using Pkg; Pkg.develop([PackageSpec(path=joinpath(pwd(), "SnoopCompileCore")), PackageSpec(path=joinpath(pwd()))]); Pkg.instantiate()' # Additional packages we'll need - - run: julia --project=docs/ -e 'using Pkg; Pkg.add(["AbstractTrees", "Cthulhu"]) # pyplot would be nice but it often errors + - run: julia --project=docs/ -e 'using Pkg; Pkg.add(["AbstractTrees", "Cthulhu"])' # pyplot would be nice but it often errors # Documenter wants them to be in the local environment - run: julia --project=docs/ -e 'using Pkg; Pkg.develop([PackageSpec(path=joinpath(pwd(), "SnoopCompileCore")), PackageSpec(path=joinpath(pwd()))]); Pkg.instantiate()' - uses: julia-actions/julia-docdeploy@releases/v1