Skip to content

Commit 967fa5b

Browse files
committed
fix(more): debug
1 parent acae6e4 commit 967fa5b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/dev.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,15 @@ jobs:
432432
run: |
433433
echo "Listing contents of ./docs directory"
434434
ls -alh ./docs
435+
echo "Listing contents of ./docs/wwwroot directory"
436+
ls -alh ./docs/wwwroot || echo "wwwroot directory not found"
437+
echo "Checking for bclversion.txt in ./docs"
438+
if [ -f "./docs/bclversion.txt" ]; then
439+
echo "Contents of ./docs/bclversion.txt:"
440+
cat ./docs/bclversion.txt
441+
else
442+
echo "bclversion.txt not found in ./docs"
443+
fi
435444
436445
437446

0 commit comments

Comments
 (0)