Skip to content

Commit 0ae4311

Browse files
fix: check-images workflow — recognize HTML img tags; remove stale image-template.png
1 parent 456fcd9 commit 0ae4311

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/check-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
for img in $images; do
3333
found=false
3434
while IFS= read -r -d '' readme_file; do
35-
if grep -q "!\[.*\](.*$img.*)" "$readme_file"; then
35+
if grep -q "!\[.*\](.*$img.*)" "$readme_file" || grep -q "src=.*$img" "$readme_file"; then
3636
found=true
3737
break
3838
fi

0 commit comments

Comments
 (0)