Skip to content

flatten repetition_penalty_whitelist #66

flatten repetition_penalty_whitelist

flatten repetition_penalty_whitelist #66

Workflow file for this run

name: Sphinx build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: pip install poetry
- name: Build HTML
run: |
poetry install
poetry run nai-build-docs
- name: Deploy on Github Pages
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html
# Add a deploy on RTD ?