Skip to content

build(deps): bump pydantic from 2.7.3 to 2.7.4 (#661) #356

build(deps): bump pydantic from 2.7.3 to 2.7.4 (#661)

build(deps): bump pydantic from 2.7.3 to 2.7.4 (#661) #356

Workflow file for this run

name: Publish documentation
on:
push:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Dependencies
run: |
python -m pip install -U pip poetry
poetry --version
poetry config --local virtualenvs.in-project true
poetry install --only docs
- name: Build docs
run: |
poetry run mkdocs build
- name: Push doc to Github Page
uses: peaceiris/actions-gh-pages@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./site