Skip to content

Commit

Permalink
Added Actions integration for deploying sphinx documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMrSheldon committed Nov 21, 2023
1 parent 052dd96 commit 2207ed4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Documentation
on:
push:
branches:
- development

jobs:
build-doc:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Dependencies
run: |
apt-get install python-sphinx furo
cd python-client/sphinx
sphinx-apidoc -o . ../tira
make html
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: python-client/sphinx/_build/html
target-folder: nightly

0 comments on commit 2207ed4

Please sign in to comment.