Merge pull request #842 from mtao/mtao/attribute_fetcher #330
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |