Merge pull request #964 from DSD-DBS/feat-redesign-breadcrumbs #254
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: Copyright DB Netz AG and the capella-collab-manager contributors | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Development documentation | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.11" | |
- run: pip install mkdocs-material | |
- run: mkdocs gh-deploy --force | |
working-directory: ./docs/development |