Skip to content

attempt to pull in doxygen #86

attempt to pull in doxygen

attempt to pull in doxygen #86

Workflow file for this run

name: github pages
on:
push:
branches:
- docs
jobs:
build-deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@v1
with:
fetch-depth: 1
submodules: true
- name: Setup Python 🐍
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip' # caching pip dependencies
- name: Install Pip Requirements 🐷
run: pip install -r requirements.txt
- name: Install doxygen 🧪
uses: ssciwr/doxygen-install@v1
- name: Clone libigl & run doxygen 🤖
run: |
git clone -b alecjacobson/doxygen https://github.com/libigl/libigl/
cd docs/
doxygen ../libigl/docs/doxygen.conf
- name: Build website 🛠
shell: bash
run: mkdocs build
- name: Deploy to GH Pages 🚀
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: site