Moved project management files into own folder

This commit is contained in:
CasVT
2023-07-02 13:14:19 +02:00
parent 84660ccad3
commit c64034ea01
5 changed files with 46 additions and 20 deletions

33
.github/workflows/build_docs.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: Update and build docs
on:
push:
branches:
- Development
jobs:
update:
name: Update API docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install -r requirements.txt
- run: python3 project_management/generate_api_docs.py
deploy:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install -r project_management/docs-requirements.txt
- run: mkdocs gh-deploy --force -f project_management/mkdocs.yml

View File

@@ -1,20 +0,0 @@
name: Build and deploy docs
on:
push:
branches:
- Development
jobs:
deploy:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install -r docs-requirements.txt
- run: mkdocs gh-deploy --force