Skip to content

Commit 03f9be8

Browse files
committed
feat: Add logging for site structure creation in deployment workflow and remove deprecated Dashboard component
1 parent 6a21447 commit 03f9be8

File tree

2 files changed

+6
-589
lines changed

2 files changed

+6
-589
lines changed

.github/workflows/deploy-docusaurus.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ jobs:
4545
4646
- name: Create combined site structure
4747
run: |
48+
echo "--- Listing contents of docu/build before copying ---"
49+
ls -R docu/build
50+
4851
# Create the main site directory
4952
mkdir -p _site
5053
@@ -55,6 +58,9 @@ jobs:
5558
mkdir -p _site/docu
5659
cp -r docu/build/* _site/docu/
5760
61+
echo "--- Listing contents of _site after copying ---"
62+
ls -R _site
63+
5864
- name: Setup Pages
5965
uses: actions/configure-pages@v4
6066

0 commit comments

Comments
 (0)