Skip to content

Commit 095cc2a

Browse files
authored
Fix unicode quotes replacement (#2100)
1 parent 287a62d commit 095cc2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/redisvl_docs_sync.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,6 @@ jobs:
274274
fi
275275
done
276276
277-
# Globally replace unicode quotes to ASCII
278-
find content/develop/ai/redisvl/ -type f -exec sed -i 's/[“”]/"/g' {} \;
279-
280277
if [ ${isLatest} = true ]; then
281278
cp -r redis_vl_hugo/* content/develop/ai/redisvl/
282279
else
@@ -287,6 +284,9 @@ jobs:
287284
python3 build/version_archiver.py redisvl ${version} --skip-archive
288285
fi
289286
287+
# Globally replace unicode quotes to ASCII
288+
find content/develop/ai/redisvl/ -type f -exec sed -i 's/[“”]/"/g' {} \;
289+
290290
- name: 'Create pull request if necessary'
291291
env:
292292
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)