fix(tree-view): Map associations of subclasses to the actual class in… #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2022 Copyright DB InfraGO AG and the capellambse-context-diagrams contributors | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Docs | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
documentation: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python runtime | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install Python dependencies | |
run: | | |
pip install '.[docs]' | |
- name: Deploy documentation | |
run: | | |
mkdocs gh-deploy --force |