Merge pull request #216 from DSD-DBS/minor-docs-refactoring #67
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: Deploy documentation | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: pip install mkdocs-material | |
- run: mkdocs gh-deploy --force | |
working-directory: ./docs |