Merge pull request #118 from DARMA-tasking/112-add-documentation #18
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: Build Documentation | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install packages | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y git doxygen | |
- name: Python Setup | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install jinja2 | |
pip install pygments | |
- name: Generate documentation | |
id: run_doxygen | |
run: | | |
./build-docs.sh ${{ secrets.DOCS_TOKEN }} |