Skip to content

Commit

Permalink
fix docs build (#1991)
Browse files Browse the repository at this point in the history
The "deploy docs" workflow is broken because it's using the system python.  This
is because actions/setup-python hasn't been told which version to install.
  • Loading branch information
philandstuff authored Oct 15, 2024
1 parent 2692447 commit df95391
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'

- name: Copy top-level docs like README and CONTRIBUTING
run: |
Expand Down

0 comments on commit df95391

Please sign in to comment.