We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbbd25e commit 80008aaCopy full SHA for 80008aa
1 file changed
.github/workflows/javadoc.yml
@@ -22,12 +22,12 @@ jobs:
22
cache: 'maven'
23
24
- name: Generate Javadoc
25
- # generates files in target/reports/apidocs or target/site/apidocs
26
- run: mvn javadoc:javadoc -DskipTests
+ # Use the release profile to include custom themes and footers
+ run: mvn javadoc:javadoc -P release -DskipTests -ntp
27
28
- name: Deploy to GitHub Pages
29
uses: JamesIves/github-pages-deploy-action@v4
30
with:
31
branch: gh-pages # The branch the action should deploy to.
32
folder: target/reports/apidocs # Check if your maven version uses 'target/site/apidocs' instead
33
- clean: true # Automatically remove deleted files from the deploy branch
+ clean: true # Automatically remove deleted files from the deploy branch
0 commit comments