Skip to content

Commit

Permalink
fix: docs deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
MoritzLaurer committed Dec 12, 2024
1 parent ced08d3 commit 7a9fb96
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,21 @@ jobs:
run: |
poetry config virtualenvs.create true
poetry config virtualenvs.in-project true
poetry install --only docs
# Debug: Show poetry version
poetry --version
# Install with verbose output
poetry install --only docs -v
# List all installed packages
poetry run pip list
# Show poetry environment info
poetry env info
- name: Build and deploy documentation
run: |
# Use poetry shell to ensure we're in the right environment
poetry shell
poetry run mkdocs gh-deploy --force

0 comments on commit 7a9fb96

Please sign in to comment.