Skip to content

trying as job instead #42

trying as job instead

trying as job instead #42

Workflow file for this run

name: Build docs
on:
push:
# branches:
# - main
# paths:
# - 'docs'
jobs:
build-notebooks:
uses: ./.github/workflows/build-notebooks.yml
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.9.5"
- name: Set up Python
run: uv python install
- name: Install dependencies for docs
run: uv sync --group docs
- name: Download artifact from previous step
uses: actions/download-artifact@v5
with:
name: notebooks
- name: Test if notebooks were downloaded
run: ls -la docs/notebooks
# - name: Build and deploy docs
# run: uv run mkdocs gh-deploy --force --clean --verbose