docs: reference sources for the video and image of the demonstration #1
This file contains 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: "publish-javadoc" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish-javadoc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy JavaDoc documentation | |
uses: MathieuSoysal/Javadoc-publisher.yml@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
javadoc-branch: javadoc | |
java-version: 17 | |
project: maven | |
javadoc-source-folder: . | |
custom-command: javadoc -d . -private -sourcepath src/main/java/ch/heigvd/dai -subpackages commands -subpackages exceptions -subpackages utilities |