Skip to content

Added images and info about the project #17

Added images and info about the project

Added images and info about the project #17

Workflow file for this run

name: make_doxygen
on:
push:
branches: [ main ]
pull_request:
branches: [ main, develop ]
types: [ opened, edited, synchronize]
permissions:
contents: write # needed for the Doxygen action
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Doxygen Action
uses: mattnotmitt/doxygen-action@v1.1.0
with:
# Path to Doxyfile
doxyfile-path: "Doxyfile" # default is ./Doxyfile
working-directory: "app/" # default is .
- name: Deploy
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./app/doxygen_out/html/