Skip to content

Merge pull request #916 from wildmeshing/dzint/image_simulation #393

Merge pull request #916 from wildmeshing/dzint/image_simulation

Merge pull request #916 from wildmeshing/dzint/image_simulation #393

Workflow file for this run

name: Doxygen Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
wget "https://github.com/doxygen/doxygen/releases/download/Release_1_9_8/doxygen-1.9.8.linux.bin.tar.gz"
tar -xzf "doxygen-1.9.8.linux.bin.tar.gz"
cd "doxygen-1.9.8"
sudo make install
sudo apt-get install graphviz
- name: Config
run: |
mkdir -p build
cd build
cmake -DWMTK_BUILD_DOCS=ON ..
make wmtk_doc_doxygen
touch docs_doxygen/html/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.3.3
with:
branch: gh-pages # The branch the action should deploy to.
folder: build/docs_doxygen/html/ # The folder the action should deploy.