Skip to content

Merge pull request #195 from ARUSfs/feature/visualization/markers #303

Merge pull request #195 from ARUSfs/feature/visualization/markers

Merge pull request #195 from ARUSfs/feature/visualization/markers #303

Workflow file for this run

name: Deploy Sphinx documentation to Pages
on:
push:
branches: ["develop"]
pull_request:
branches: ["develop"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sphinx myst-parser furo numpydoc recommonmark
- name: Build documentation
run: |
cd docs
make html
- name: Install Doxygen
run: sudo apt-get install doxygen graphviz
- name: Generate Documentation
run: doxygen Doxyfile
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: 'docs/_build/html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1