Skip to content

Commit

Permalink
🐞 Print location if /docs not found
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Mar 7, 2024
1 parent c2368e1 commit cdb8db0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/update-docs-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,15 @@ jobs:

- name: Run script to update documentation 🪄
run: |
cp -r master-docs/docs website-docs/docs
if [ -d master-docs/docs ]; then
ls -R master-docs/docs # List files for debugging
cp -r master-docs/docs website-docs/
echo "Copied docs from master to website"
else
pwd
ls -R
echo "master-docs/docs directory does not exist"
fi
python website-docs/do-markdown-magic.py
working-directory: website-docs

Expand Down

0 comments on commit cdb8db0

Please sign in to comment.