Skip to content

Commit 20b3515

Browse files
🚑 Fix documentation action
1 parent 16ad417 commit 20b3515

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/pydoc-github-pages.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,16 @@ jobs:
2121
- uses: actions/checkout@v3
2222
- name: Install uv
2323
uses: astral-sh/setup-uv@v5
24-
- name: Set up venv with Python ${{ matrix.python-version }}
25-
run: |
26-
uv venv --python ${{ matrix.python-version }}
2724
- name: Install dependencies
2825
run: |
2926
uv sync --extra docs --extra gym --extra gui --extra planning --extra htmlvis
3027
- name: Make documentation
31-
- run: |
28+
run: |
3229
uv run pdoc -d google -t docs/template --logo https://irll.net/irll-logo.png --logo-link https://irll.github.io/HierarchyCraft/hcraft.html -o docs/build --math --no-search hcraft
3330
- name: Upload static documentation artifact
34-
- uses: actions/upload-pages-artifact@v1
35-
with:
36-
path: docs/build
31+
uses: actions/upload-pages-artifact@v1
32+
with:
33+
path: docs/build
3734

3835
# Deploy the artifact to GitHub pages.
3936
# This is a separate job so that only actions/deploy-pages has the necessary permissions.

0 commit comments

Comments
 (0)