Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit d82d19f

Browse files
waytrue17Wei Chu
andauthored
Fix file path in build_docs (#19901)
Co-authored-by: Wei Chu <[email protected]>
1 parent e164cee commit d82d19f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ci/docker/runtime_functions.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,10 +1191,14 @@ build_docs() {
11911191

11921192
# copy the full site for this version to versions folder
11931193
mkdir -p html/versions/master
1194-
for f in 404.html api assets blog community ecosystem features feed.xml get_started index.html; do
1194+
for f in 404.html api assets community feed.xml get_started index.html; do
11951195
cp -r html/$f html/versions/master/
11961196
done
11971197

1198+
for f in blog ecosystem features; do
1199+
cp -r html/pages/$f html/versions/master/
1200+
done
1201+
11981202
# clean up temp files
11991203
find html -type f -name '.DS_Store' -delete
12001204

0 commit comments

Comments
 (0)