Skip to content

Commit eb3dddc

Browse files
committed
chore: add debugging steps to GitHub Actions workflow
1 parent 0da2de1 commit eb3dddc

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/deploy.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,15 @@ jobs:
3535

3636
- name: Build site
3737
working-directory: ./site
38-
run: pnpm build
38+
run: |
39+
pnpm build
40+
echo "Build complete. Checking dist directory:"
41+
ls -la dist/
42+
43+
- name: Debug directory structure
44+
run: |
45+
echo "Current directory structure:"
46+
ls -R ./site/dist/
3947
4048
- name: Upload artifact
4149
uses: actions/upload-pages-artifact@v3

0 commit comments

Comments
 (0)