Skip to content

draft of docs build in github actions #1

draft of docs build in github actions

draft of docs build in github actions #1

Workflow file for this run

name: Build and publish docs
on:
push:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- name: Install dependencies
run: |
pip install ".[docs]"
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
- name: Build docs
run: |
cd docs; make html
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: docs/build/html
# Deployment job
# deploy:
# environment:
# name: github-pages
# url: ${{steps.deployment.outputs.page_url}}
# runs-on: ubuntu-latest
# needs: build
# steps:
# - name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v2