fix: check join_thread attribute in queue when cleaning mp exec #302
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: 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-22.04 | |
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 |