Skip to content

Merge pull request #842 from mtao/mtao/attribute_fetcher #330

Merge pull request #842 from mtao/mtao/attribute_fetcher

Merge pull request #842 from mtao/mtao/attribute_fetcher #330

Workflow file for this run

name: Doxygen Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/[email protected]
- name: Update APT
run: |
sudo apt-get update
- name: Install Dependencies
run: |
sudo apt-get -o Acquire::Retries=3 install \
doxygen \
graphviz
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Generate Doxygen Documentation
run: doxygen docs/Doxyfile.in
- name: Create .nojekyll
run: touch docs/html/.nojekyll
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/html/ # The folder the action should deploy.