Skip to content

Commit

Permalink
added Sphinx workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lucl13 committed Aug 5, 2024
1 parent 4197afd commit f4aebb0
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Sphinx build

on: push

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build HTML
uses: ammaraskar/[email protected]
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: html-docs
path: docs/build/html/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html
Binary file modified docs/build/doctrees/environment.pickle
Binary file not shown.
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
furo==2021.11.16
1 change: 0 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import pigeon_feather
import sys

sys.path.insert(0, os.path.abspath('../../'))
Expand Down

0 comments on commit f4aebb0

Please sign in to comment.