Skip to content

Add Gaussian sampling #12

Add Gaussian sampling

Add Gaussian sampling #12

name: Deploy Documentation
on:
push:
branches:
- main
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
run: doxygen ./build/Doxyfile
- name: Deploy Documentation
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: "gh-pages"
folder: "./html"
target-folder: "./"