Skip to content

Commit aeb16ec

Browse files
committed
Fix Javadoc output directory
1 parent a8a8534 commit aeb16ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/publish-documentation-to-github-pages.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ git checkout gh-pages
2424
mkdir -p $RELEASE_VERSION/htmlsingle
2525
cp target/generated-docs/index.html $RELEASE_VERSION/htmlsingle
2626
mkdir -p $RELEASE_VERSION/api
27-
cp -r target/site/apidocs/* $RELEASE_VERSION/api/
27+
cp -r target/reports/apidocs/* $RELEASE_VERSION/api/
2828
git add $RELEASE_VERSION/
2929

3030
if [[ $LATEST == "true" ]]
@@ -42,11 +42,11 @@ if [[ $LATEST == "true" ]]
4242
mkdir -p $DOC_DIR/htmlsingle
4343
cp target/generated-docs/index.html $DOC_DIR/htmlsingle
4444
mkdir -p $DOC_DIR/api
45-
cp -r target/site/apidocs/* $DOC_DIR/api/
45+
cp -r target/reports/apidocs/* $DOC_DIR/api/
4646
git add $DOC_DIR/
4747

4848
fi
4949

5050
git commit -m "$MESSAGE"
5151
git push origin gh-pages
52-
git checkout main
52+
git checkout main

0 commit comments

Comments
 (0)