Merge branch 'master' of https://github.com/hwelch-fle/plankapy
This commit is contained in:
commit
4eceb43d44
2 changed files with 6 additions and 3 deletions
7
.github/workflows/pdoc.yml
vendored
7
.github/workflows/pdoc.yml
vendored
|
@ -24,15 +24,18 @@ jobs:
|
|||
python-version: '3.11'
|
||||
|
||||
# ADJUST THIS: install all dependencies (including pdoc)
|
||||
#- run: pip install -e .
|
||||
#- run: pip install --upgrade pip
|
||||
- run: pip install pdoc
|
||||
- run: pip install requests
|
||||
#- run: pip install json
|
||||
# ADJUST THIS: build your documentation into docs/.
|
||||
# We use a custom build script for pdoc itself, ideally you just run `pdoc -o docs/ ...` here.
|
||||
- run: pdoc -d markdown -o docs/ plankapy.py
|
||||
- run: python3 -m pdoc -d markdown -o ../../docs ../../plankapy.py
|
||||
|
||||
- uses: actions/upload-pages-artifact@v1
|
||||
with:
|
||||
path: docs/
|
||||
path: ../../docs
|
||||
|
||||
# Deploy the artifact to GitHub pages.
|
||||
# This is a separate job so that only actions/deploy-pages has the necessary permissions.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# plankapy
|
||||
A python 3 based API for controlling a self-hosted Planka instance
|
||||
|
||||
[Docs](https://hwelch-fle.github.io)
|
||||
[Docs](https://hwelch-fle.github.io/plankapy/plankapy.html)
|
||||
|
|
Loading…
Reference in a new issue