Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ jobs:
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./pages
publish_dir: .
Copy link

Copilot AI Mar 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With publish_dir: ., the GitHub Pages deployment will include the entire repository root (e.g., data/, docs/, tests/, backup/, lockfiles, etc.) except for the few patterns in exclude_assets. If the intention is to publish only the website (index.html + pages/), consider either deploying a dedicated output directory containing just the site, or expanding exclude_assets to exclude the large/non-site directories that are now being deployed.

Suggested change
publish_dir: .
publish_dir: ./pages

Copilot uses AI. Check for mistakes.
exclude_assets: '.github,.gitignore,.env,generate_config.sh,*.md,*.py'
Loading