This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new ee0fd9227 Add more document debugging.
ee0fd9227 is described below
commit ee0fd9227a4a3bbc73290f2de5a27072642b01ea
Author: James Bognar <[email protected]>
AuthorDate: Fri Sep 26 19:09:45 2025 -0400
Add more document debugging.
---
.github/workflows/deploy-docs.yml | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/deploy-docs.yml
b/.github/workflows/deploy-docs.yml
index 824b9bb55..ce32b9f52 100644
--- a/.github/workflows/deploy-docs.yml
+++ b/.github/workflows/deploy-docs.yml
@@ -67,16 +67,16 @@ jobs:
- name: Copy Maven Site to build directory
run: |
- # cp -v -r target/site/* juneau-docs/build/site/
- # Create direct javadocs access for backward compatibility
+ echo "-----Present working directory-----"
pwd
- echo "Current directory contents"
- ls -l
- echo "Target directory contents"
- ls -l target
- ln -s juneau-docs/build/site target/site
- echo "Build directory contents"
- ls -RlL juneau-docs/build
+ echo "-----Current directory contents-----"
+ find .
+ echo "-----Copying site-----"
+ mkdir -p juneau-docs/build/site
+ cp -v -r target/site/* juneau-docs/build/site/
+ echo "-----Build directory contents-----"
+ cd juneau-docs/build
+ find .
- name: Deploy to staging branch
uses: peaceiris/actions-gh-pages@v4