Skip to content

Add theoretica_mini.h, Remove THEORETICA_INCLUDE_BASE #89

Add theoretica_mini.h, Remove THEORETICA_INCLUDE_BASE

Add theoretica_mini.h, Remove THEORETICA_INCLUDE_BASE #89

name: Deploy Documentation
on:
push:
branches:
- master
permissions:
contents: write
jobs:
build-and-deploy:
name: Build and Deploy Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Installation
shell: bash
run: |
sudo apt-get update
sudo apt-get install doxygen -y
sudo apt-get install graphviz -y
- name: Generate Documentation
shell: bash
working-directory: ./build
run: doxygen Doxyfile
- name: Deploy Documentation
uses: JamesIves/github-pages-deploy-action@v4.6.4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: "gh-pages"
folder: "./build/html"
target-folder: "./"