Skip to content

Commit 38cfa2d

Browse files
build(pages): ensure hidden files are included (#188)
1 parent 1fd8ad3 commit 38cfa2d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
rm -f -r ./gh-pages/*
3939
4040
# move contents of dist to gh-pages
41-
mv -f ./dist/* ./gh-pages/
41+
# https://stackoverflow.com/a/20192079/11214013
42+
cp -r ./dist/. ./gh-pages/
4243
4344
# move node_modules directory to gh-pages
4445
mv -f ./node_modules/ ./gh-pages/

0 commit comments

Comments
 (0)