Skip to content

Updated README to have a correct usage #5

Updated README to have a correct usage

Updated README to have a correct usage #5

Workflow file for this run

name: Build and Deploy Documentation
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Doxygen
run: sudo apt-get install -y doxygen
- name: Generate Documentation
run: |
mkdir doc
doxygen Doxyfile
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc/html