Prepares the repo for moving to the public Github (#58) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Sphinx docs | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- 'stable/**' | |
pull_request: | |
branches: | |
- main | |
- 'stable/**' | |
jobs: | |
build_and_deploy_docs: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
sudo apt-get update | |
sudo apt-get install -y pandoc | |
- name: Build docs | |
shell: bash | |
run: | | |
tox -e docs | |
- name: Prepare docs artifact | |
if: always() | |
shell: bash | |
run: | | |
mkdir artifact | |
cp -a docs/_build/html artifact/ckt_html_docs | |
- name: Upload docs artifact | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ckt_html_docs | |
path: ./artifact |