Skip to content

update!: changed the whole of APIs (#20) #33

update!: changed the whole of APIs (#20)

update!: changed the whole of APIs (#20) #33

Workflow file for this run

name: Javadoc
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: GitHub Action for GraalVM
uses: graalvm/setup-graalvm@v1
with:
java-version: 21
distribution: 'graalvm'
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Compile
run: mvn compile
- name: Javadoc
run: mvn javadoc:javadoc
- name: Publish Documentation on GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/site/apidocs