Skip to content

Specified version in github workflow #46

Specified version in github workflow

Specified version in github workflow #46

Workflow file for this run

name: Page Deploy
on: [push, pull_request]
jobs:
Build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install peotry
run: |
python -m pip install --upgrade pip
pip install poetry=1.8.4
- name: Install dependencies
run: |
poetry install
- name: Build site
run: |
poetry run mkdocs build --clean
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site