Skip to content

fix: resolve issues #204 and #205 - ncurses error handling and ComboB… #17

fix: resolve issues #204 and #205 - ncurses error handling and ComboB…

fix: resolve issues #204 and #205 - ncurses error handling and ComboB… #17

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