Skip to content

Misc fixes, add face parsing/segmentation models #82

Misc fixes, add face parsing/segmentation models

Misc fixes, add face parsing/segmentation models #82

Workflow file for this run

name: docs
on:
push:
branches:
- master
jobs:
build-docs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Medusa
uses: ./.github/actions/setup-medusa
with:
python-version: ${{ matrix.python-version }}
- name: Cache downloaded models
id: cache-downloads
uses: actions/cache@v3
with:
path: ~/.medusa_ext_data
key: ${{ runner.os }}
- name: Download external data
shell: bash
env:
passwd_flame: ${{ secrets.PASSWD_FLAME }}
if: steps.cache-downloads.outputs.cache-hit != 'true'
run: poetry run ./ci/download_data
- name: Test docs
shell: bash
run: poetry run ./docs/test_docs
- name: Build docs
shell: bash
run: poetry run ./docs/build_docs
- name: Publish docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html