Skip to content

Commit f391b4e

Browse files
chore(.github): adjust docs output check
1 parent 74e79e3 commit f391b4e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/mdbook.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
build:
2828
runs-on: ubuntu-latest
2929
env:
30-
MDBOOK_VERSION: 0.4.36
30+
MDBOOK_VERSION: 0.4.52
3131
steps:
3232
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3333
- name: Install mdBook
@@ -43,14 +43,14 @@ jobs:
4343
run: cd docs && mdbook build
4444
- name: Check Expected Files
4545
run: |
46-
if [ ! -f docs/book/html/index.html ]; then
47-
echo "Expected file docs/book/html/index.html is missing. Double-check the mdBook/Pages config."
46+
if [ ! -f docs/book/index.html ]; then
47+
echo "Expected file docs/book/index.html is missing. Double-check the mdBook/Pages config."
4848
exit 1
4949
fi
5050
- name: Upload artifact
5151
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
5252
with:
53-
path: ./docs/book/html
53+
path: ./docs/book
5454

5555
# Deployment job
5656
deploy:

0 commit comments

Comments
 (0)