Skip to content

Merge pull request #61 from eriwen/fix-release-packages #32

Merge pull request #61 from eriwen/fix-release-packages

Merge pull request #61 from eriwen/fix-release-packages #32

Workflow file for this run

name: Docs
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Add python requirements
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Build docs
run: |
# tox -e docs-lint
tox -e docs
- uses: actions/upload-artifact@v4
with:
name: ApiDocsHTML
path: "docs/_build/html/"
- name: set nojekyll for github
run: |
sudo touch docs/_build/html/.nojekyll
- name: Deploy docs to gh-pages
if: ${{ github.event_name == 'push' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs/_build/html/