Skip to content

Commit

Permalink
fixed hidden files copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Alon Kellner committed Jun 18, 2024
1 parent 7f72f85 commit f6a1171
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docsite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: nbsite build

- name: Copy site root ➜
run: cp -r doc/site_root/* builtdocs/
run: cp -r doc/site_root/. builtdocs/

- name: Push to docsite
run: |
Expand All @@ -53,7 +53,7 @@ jobs:
git fetch
git switch docsite
find . -mindepth 1 -regextype posix-egrep ! -regex '(^\.\/\.git.*)|(^\.\/builtdocs.*)' -delete
cp -r builtdocs/* ./
cp -r builtdocs/. ./
rm -r builtdocs
git add .
git commit -am "Deploying site from ${git_branch}@${git_hash}"
Expand Down

0 comments on commit f6a1171

Please sign in to comment.