Skip to content

build(deps): bump pydantic from 2.9.1 to 2.9.2 #91

build(deps): bump pydantic from 2.9.1 to 2.9.2

build(deps): bump pydantic from 2.9.1 to 2.9.2 #91

Workflow file for this run

name: main branch updated
on:
push:
branches:
- main
jobs:
bump-version:
if: "!startsWith(github.event.head_commit.message, 'bump:')"
runs-on: ubuntu-latest
name: "Bump version and create changelog with commitizen"
steps:
- name: Check out
uses: actions/checkout@main
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
fetch-depth: 0
persist-credentials: false
- name: Create bump and changelog
uses: commitizen-tools/commitizen-action@master
with:
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
branch: main
publish-github-page:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@main
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
fetch-depth: 0
ref: accumulate-data
- name: Set up Python 3.9
uses: actions/setup-python@v5.2.0
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install -U pip poetry invoke
inv env.init-dev --no-pre-commit
- name: Build docs
run: |
inv doc.build --no-local
- name: Push documentation to Github Page
uses: peaceiris/actions-gh-pages@v3.9.3
with:
personal_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
publish_branch: gh-pages
publish_dir: ./site