Skip to content

Improve type

Improve type #45

Workflow file for this run

name: Doxygen For GH-Pages
on: [push]
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Doxygen πŸ”§
run: sudo apt-get install doxygen graphviz inkscape pdf2svg -y
shell: bash
- name: Generate Doxygen Documentation πŸ”§πŸ”§
run: |
mkdir -p docs/html
doxygen
- name: Create .nojekyll πŸ”§πŸ”§πŸ”§
run: |
touch docs/html/.nojekyll
touch docs/.nojekyll
touch .nojekyll
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
folder: docs/html
target-folder: docs/