We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a21447 commit 03f9be8Copy full SHA for 03f9be8
.github/workflows/deploy-docusaurus.yml
@@ -45,6 +45,9 @@ jobs:
45
46
- name: Create combined site structure
47
run: |
48
+ echo "--- Listing contents of docu/build before copying ---"
49
+ ls -R docu/build
50
+
51
# Create the main site directory
52
mkdir -p _site
53
@@ -55,6 +58,9 @@ jobs:
55
58
mkdir -p _site/docu
56
59
cp -r docu/build/* _site/docu/
57
60
61
+ echo "--- Listing contents of _site after copying ---"
62
+ ls -R _site
63
64
- name: Setup Pages
65
uses: actions/configure-pages@v4
66
0 commit comments