Skip to content

Update README.md

Update README.md #160

Workflow file for this run

# .github/workflows/deploy_docs.yml
name: Deploy doxygen to Pages
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Doxygen Action
uses: mattnotmitt/doxygen-action@edge
with:
doxyfile-path: "./Doxyfile"
working-directory: "."
- name: Add .nojekyll
run: sudo touch ./docs/html/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./docs/html
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2