Skip to content

Commit

Permalink
fix: build directory changed (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattes authored Feb 8, 2025
1 parent cbfe9f1 commit a1e2f26
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,17 @@ jobs:
- name: Build with mdBook
run: mdbook build

- name: Verify build directory contains index.html
run: |
if [ ! -f ./docs/html/index.html ]; then
echo "index.html not found"
exit 1
fi
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs
path: ./docs/html

# Deployment job
deploy:
Expand Down

0 comments on commit a1e2f26

Please sign in to comment.