Skip to content

fix order of arguments in SchemaVersion constructor (#227) #25

fix order of arguments in SchemaVersion constructor (#227)

fix order of arguments in SchemaVersion constructor (#227) #25

Workflow file for this run

name: Publish documentation
on:
push:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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 install
- name: Build docs
run: |
poetry run mkdocs build
- name: Push doc to Github Page
uses: peaceiris/actions-gh-pages@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: ./site