Add check for source vendor JS dir before copy step

This commit is contained in:
Dennis Dornon 2025-03-27 13:56:59 -04:00
parent 771155c4b8
commit cb24e9ecac

View file

@ -101,6 +101,12 @@ jobs:
env:
JEKYLL_ENV: production

# Verify source vendor dir exists BEFORE copy
- name: Check Source Vendor Dir
run: |
echo "Checking if source vendor directory exists before copy..."
ls -la dox-theme/assets/js/vendor/ || echo "Source directory dox-theme/assets/js/vendor/ NOT FOUND before copy attempt!"

# Explicitly copy missing JS vendor files into _site
- name: Copy JS Vendor Files
run: |