We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acae6e4 commit 967fa5bCopy full SHA for 967fa5b
.github/workflows/dev.yml
@@ -432,6 +432,15 @@ jobs:
432
run: |
433
echo "Listing contents of ./docs directory"
434
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
444
445
446
0 commit comments