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
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ jobs:
# Create or switch to gh-pages branch
git checkout gh-pages 2>/dev/null || git checkout --orphan gh-pages

# Clean and copy new docs (preserve .git directory)
# Clean and copy new docs (preserve .git directory, include dotfiles)
find . -mindepth 1 -not -path './.git' -not -path './.git/*' -delete
cp -r ../docs/dist/* .
cp -r ../docs/dist/. .

# Commit and push if there are changes
git add -A
Expand Down