Merge pull request #635 from apache/fix_workflows #124
This file contains hidden or 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
| name: JavaDoc | |
| on: | |
| push: | |
| branches: main | |
| workflow_dispatch: | |
| jobs: | |
| javadoc: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Echo Java Version | |
| run: java -version | |
| - name: Print Current workflow | |
| run: > | |
| cat .github/workflows/javadoc.yml | |
| - name: Generate JavaDoc | |
| run: mvn javadoc:javadoc | |
| - name: Deploy JavaDoc | |
| uses: JamesIves/github-pages-deploy-action@v4.6.8 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| folder: target/reports/apidocs | |
| target-folder: docs/${{ github.ref_name }} | |
| branch: gh-pages |