Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try fix javadoc workflow #232

Merged
merged 5 commits into from
Nov 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions .github/workflows/javadoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,29 @@ name: JavaDoc

on:
push:
branches:
- main
branches: [ 4.0.X, main ]
workflow_dispatch:

jobs:
javadoc:
runs-on: ubuntu-latest

env:
JDK_VERSION: 17


steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Java
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'

- name: Echo Java Version
run: >
java -version
run: java -version

- name: Generate JavaDoc
run: mvn javadoc:javadoc

- name: Deploy JavaDoc
uses: JamesIves/github-pages-deploy-action@5dc1d5a192aeb5ab5b7d5a77b7d36aea4a7f5c92
with:
Expand Down