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 11847d59d Add logging to see where the site folder is being created.
11847d59d is described below
commit 11847d59d07f073e57d9916562a5452e47f92daf
Author: James Bognar <[email protected]>
AuthorDate: Fri Sep 26 16:09:17 2025 -0400
Add logging to see where the site folder is being created.
---
.github/workflows/deploy-docs.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/deploy-docs.yml
b/.github/workflows/deploy-docs.yml
index 2811d3872..482dd51fa 100644
--- a/.github/workflows/deploy-docs.yml
+++ b/.github/workflows/deploy-docs.yml
@@ -68,9 +68,9 @@ jobs:
- name: Copy Maven Site to build directory
run: |
mkdir -p juneau-docs/build/site
- cp -r target/site/* juneau-docs/build/site/
+ cp -v -r target/site/* juneau-docs/build/site/
# Create direct javadocs access for backward compatibility
- ln -s site/apidocs juneau-docs/build/javadocs
+ # ln -s site/apidocs juneau-docs/build/javadocs
- name: Deploy to staging branch
uses: peaceiris/actions-gh-pages@v4