Skip to content

🥳 Initial Commit

🥳 Initial Commit #1

name: Doxygen GitHub Pages Deploy Action
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Doxygen
run: |
sudo apt-get update -qy
sudo apt-get install -y doxygen
- name: Run Doxygen
run: doxygen Documentation/Doxyfile
- name: Create .nojekyll file
run: touch docs/html/.nojekyll
- name: Deploy to GitHub Pages
uses: DenverCoder1/doxygen-github-pages-action@v1.3.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: docs/html
config_file: Documentation/Doxyfile