Use different sample code #36
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
# From: https://github.com/nullromo/doxygen-example/blob/main/.github/workflows/main.yml | |
name: Doxygen Action | |
on: | |
push: | |
branches: [main] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Doxygen documentation | |
uses: mattnotmitt/[email protected] | |
with: | |
doxyfile-path: "./Doxyfile" | |
working-directory: "./backend" | |
- name: Move Doxygen HTML files into Doxygen directory | |
run: | | |
sudo mv docs/doxygen/html/* docs/doxygen | |
- name: Build JSDoc documentation | |
uses: andstor/jsdoc-action@v1 | |
with: | |
config_file: "./frontend/jsdoc.config.json" | |
output_dir: './docs/jsdoc' | |
recurse: true | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs |