Skip to content

Bump requests from 2.30.0 to 2.31.0 in /doc #19

Bump requests from 2.30.0 to 2.31.0 in /doc

Bump requests from 2.30.0 to 2.31.0 in /doc #19

Workflow file for this run

name: Docs
on: [push, pull_request, workflow_dispatch]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Install Sphinx
run: |
pip install sphinx breathe sphinx-rtd-theme
- name: Install Doxygen
run: sudo apt-get install doxygen -y
shell: bash
- name: Build documentation
run: |
sphinx-build doc _build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/
force_orphan: true