Skip to content

Commit 8447993

Browse files
Dale-Blackclaude
andcommitted
Fix build_playground path + docs CI registry update
- build_playground: look for index.html at docs/src/playground/ (was docs/playground/) - docs CI: use Pkg.Registry.update() + Pkg.instantiate() instead of Pkg.resolve() (resolve tries to upgrade deps and fails when registry isn't populated) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 341c863 commit 8447993

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
julia --project=docs -e '
3434
using Pkg
35-
Pkg.resolve()
35+
Pkg.Registry.update()
3636
Pkg.instantiate()
3737
'
3838

src/playground/build.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function build_playground(output_dir::String; verbose::Bool=false, bundle::Bool=
2222
mkpath(output_dir)
2323

2424
playground_src = joinpath(@__DIR__)
25-
docs_playground = joinpath(@__DIR__, "..", "..", "docs", "playground")
25+
docs_playground = joinpath(@__DIR__, "..", "..", "docs", "src", "playground")
2626

2727
# --- Step 1: Copy JS pipeline files ---
2828
js_files = ["parser.js", "lowerer.js", "infer.js", "codegen.js", "runtime.js", "worker.js"]

0 commit comments

Comments
 (0)