-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Github Actions: replace javadoc action with maven command
- Loading branch information
1 parent
67b2387
commit b4e2f5f
Showing
1 changed file
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,14 +33,13 @@ jobs: | |
uses: actions/checkout@v4 | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v5 | ||
- name: Deploy JavaDoc 🚀 | ||
uses: MathieuSoysal/[email protected] | ||
- uses: actions/setup-java@v4 | ||
with: | ||
java-version: 8 | ||
javadoc-source-folder: ./src/site/resources/apidocs | ||
project: maven | ||
without-deploy: true | ||
without-checkout: true | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: maven | ||
- name: Run the Maven javadoc command | ||
run: mvn javadoc:aggregate -DreportOutputDirectory=src/site/resources/apidocs | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
|