Skip to content

test: update ThreadSafetyConcurrentModificationIT with code-solve cha… #15

test: update ThreadSafetyConcurrentModificationIT with code-solve cha…

test: update ThreadSafetyConcurrentModificationIT with code-solve cha… #15

Workflow file for this run

name: Publish JavaDoc
on:
push:
branches: [ main ]
jobs:
javadoc:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup JDK 21
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Generate JavaDoc
run: mvn javadoc:javadoc
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/site/apidocs
destination_dir: javadoc