Skip to content

Commit 157b041

Browse files
thomasahleclaude
andcommitted
fix: deploy.yml — update paths for SvelteKit migration
- Change artifact upload path from dist/ to build/ (SvelteKit static adapter outputs to build/, not dist/) - Change CIRCT artifact download dir from static/circt to public/circt (SvelteKit uses public/ for static assets, not static/) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 19a1cc9 commit 157b041

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ jobs:
4444
# The build proceeds without them; simulation features will be
4545
# unavailable but the rest of the tutorial still works.
4646
run: |
47-
mkdir -p static/circt
47+
mkdir -p public/circt
4848
if gh release download circt-wasm \
4949
--repo "$GITHUB_REPOSITORY" \
50-
-D static/circt \
50+
-D public/circt \
5151
--clobber 2>/dev/null; then
5252
echo "CIRCT artifacts downloaded from release 'circt-wasm'"
53-
ls -lh static/circt/
53+
ls -lh public/circt/
5454
else
5555
echo "::notice::No 'circt-wasm' release found; simulation features will be unavailable."
5656
fi
@@ -64,7 +64,7 @@ jobs:
6464

6565
- uses: actions/upload-pages-artifact@v3
6666
with:
67-
path: dist
67+
path: build
6868

6969
- name: Deploy to GitHub Pages
7070
id: deployment

0 commit comments

Comments
 (0)