Skip to content

Commit 6a4851d

Browse files
committed
fix artifact path
1 parent 3afbe7f commit 6a4851d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/sphinx.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,15 @@ jobs:
3636
# sphinx-build -b html source/ build/
3737
- name: check resulting files
3838
run: |
39-
ls ${GITHUB_WORKSPACE}/docs/
4039
ls ${GITHUB_WORKSPACE}/docs/build
41-
ls ${GITHUB_WORKSPACE}/docs/build/html
4240
- name: Upload artifacts
4341
uses: actions/upload-artifact@v4
4442
with:
4543
name: html-docs
46-
path: docs/build/html/
44+
path: docs/build/
4745
- name: Deploy
4846
uses: peaceiris/actions-gh-pages@v3
4947
# if: github.ref == 'refs/heads/main'
5048
with:
5149
github_token: ${{ secrets.GITHUB_TOKEN }}
52-
publish_dir: docs/build/html
50+
publish_dir: docs/build

0 commit comments

Comments
 (0)