Skip to content

fix: github workflows #43

fix: github workflows

fix: github workflows #43

name: publish documentation
on:
push:
branches:
- master
jobs:
docs_to_gh-pages:
runs-on: ubuntu-latest
name: publish documentation
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: '3.10'
- name: Install the project
run:
uv sync --group=doc
- name: make docs
run: |
cd docs
uv run --no-sync make 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