Skip to content

Merge pull request #16 from CyberAgentAILab/version/0.1.2 #17

Merge pull request #16 from CyberAgentAILab/version/0.1.2

Merge pull request #16 from CyberAgentAILab/version/0.1.2 #17

Workflow file for this run

name: Build Docs
on:
push:
branches:
- main
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Install dependencies
run: |
pipenv install --dev --system
- name: Build documentation
run: |
cd docs
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html