Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-zenk committed Dec 14, 2023
1 parent d9af929 commit 3ab2aa8
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,16 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: pip install .
- run: pip install pdoc3
- run: pdoc -o docs/ --html onboardapis
- name: Build docs
run: |
pip install .
pip install pdoc3
pdoc -o docs/ --html onboardapis
- name: Fix permissions
run: |
chmod -c -R +rX "docs/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- uses: actions/upload-pages-artifact@v2
with:
path: docs/
Expand Down

0 comments on commit 3ab2aa8

Please sign in to comment.