Skip to content

Refactor methods of BaseEntity (#69) #30

Refactor methods of BaseEntity (#69)

Refactor methods of BaseEntity (#69) #30

Workflow file for this run

name: Deploy MkDocs Site
on:
push:
branches:
- main # Triggers deployment on push to the main branch
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install Documentation Dependencies
run: |
pip install --upgrade pip
pip install .[docu]
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CONFIG_FILE: mkdocs.yml