From c48fbf80bcc60bc1b8b37fe51e2a5f076b6ecfb9 Mon Sep 17 00:00:00 2001 From: Julien Ponge Date: Sat, 19 Oct 2024 13:10:26 +0200 Subject: [PATCH] Fix the aggregate API docs path --- .github/scripts/render-documentation.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/render-documentation.sh b/.github/scripts/render-documentation.sh index 9100c4f..c899a63 100755 --- a/.github/scripts/render-documentation.sh +++ b/.github/scripts/render-documentation.sh @@ -3,7 +3,7 @@ set -euo pipefail IFS=$'\n\t' ./mvnw -s .github/maven-ci-settings.xml package javadoc:aggregate -DskipTests -cp -R target/site/apidocs docs/ +cp -R target/reports/apidocs docs/ PROJECT_VERSION=$(cat .github/project.yml | yq eval '.release.current-version' -)