Skip to content

release: v1.0.1 — Infomaniak prod test fixes #11

release: v1.0.1 — Infomaniak prod test fixes

release: v1.0.1 — Infomaniak prod test fixes #11

Workflow file for this run

name: Deploy Documentation to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install poetry
poetry install --with docs
- name: Build documentation
run: poetry run mkdocs build
- name: Deploy to GitHub Pages (gh-pages branch)
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
publish_branch: gh-pages