Skip to content

ci: skip py313 wheel #281

ci: skip py313 wheel

ci: skip py313 wheel #281

Workflow file for this run

name: Documentation
on:
workflow_dispatch:
push:
branches: [master, dev]
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
# UV_INDEX_STRATEGY: "unsafe-first-match"
# UV_EXTRA_INDEX_URL: "https://download.pytorch.org/whl/cpu"
PIP_EXTRA_INDEX_URL: "https://download.pytorch.org/whl/cpu"
jobs:
Documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: 'pip'
- run: echo WEEK=$(date +%V) >>$GITHUB_ENV
shell: bash
# - uses: hynek/setup-cached-uv@v1
# with:
# cache-suffix: -docs-${{ matrix.python-version }}-${{ env.WEEK }}
- name: Install dependencies
run: |
pip install '.[docs]'
# uv venv
# uv pip install '.[docs]'
- name: Set up Git
run: |
git config user.name ${{ github.actor }}
git config user.email ${{ github.actor }}@users.noreply.github.com
- name: Build documentation
run: |
git fetch origin gh-pages
mike delete $BRANCH_NAME
mike deploy --push $BRANCH_NAME
# source .venv/bin/activate