relativ path fixed #18
Workflow file for this run
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-License-Identifier: MIT | |
# SPDX-FileCopyrightText: 2023 Berkay Bozkurt <[email protected]> | |
name: documentation | |
on: [push, pull_request, workflow_dispatch] | |
permissions: | |
contents: write | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pipenv | |
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
pipenv install --dev | |
- name: Set PYTHONPATH | |
run: | | |
echo "PYTHONPATH=${PYTHONPATH}:$(pwd)/src" >> $GITHUB_ENV | |
- name: Check PYTHONPATH | |
run: | | |
echo $PYTHONPATH | |
- name: Generate pdoc | |
run: | | |
pipenv run pdoc --html ./src --output-dir ../docs | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/python-generation' }} | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/src/ | |
force_orphan: true |