Skip to content

Commit

Permalink
chore: add directory listing step for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
mherod committed Jan 3, 2025
1 parent bb9cc3f commit 4021acc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,15 @@ jobs:
CI: true
BROWSER: none

- name: List docs directory
run: |
echo "Contents of docs directory:"
ls -la docs/
echo "Contents of docs/.vitepress directory:"
ls -la docs/.vitepress/ || true
echo "Contents of docs/.vitepress/dist directory:"
ls -la docs/.vitepress/dist/ || true
- name: Restore xdg-open
if: always()
run: |
Expand Down

0 comments on commit 4021acc

Please sign in to comment.