fix use of updated mbt2018-mse-vbr model #32
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: publish documentation | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
docs_to_gh-pages: | |
runs-on: ubuntu-latest | |
name: publish documentation | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: install dependencies pip | |
run: | | |
python3 -m pip install -U pip | |
python3 -m pip install .[doc] | |
- name: make docs | |
run: | | |
make -C docs clean | |
make -C docs html | |
- name: Init repo for generated files | |
run: | | |
cd docs/_build/html | |
git init | |
touch .nojekyll | |
git add --all | |
git config --local user.email "[email protected]" | |
git config --local user.name "CompressAI" | |
git commit -m "deploy" | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: github.ref == 'refs/heads/master' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/_build/html |