🔍️ chore(SEO): update social media cards

This commit is contained in:
welpo
2023-09-12 21:09:36 +02:00
parent cb8069fc6e
commit cc029d0b19
10 changed files with 7 additions and 1 deletions

View File

@@ -71,7 +71,7 @@ function has_body_changes() {
# Function to update the social media card for a post or section.
function generate_and_commit_card {
local file=$1
social_media_card=$(social-cards-zola -o static/img/social_cards -b http://127.0.0.1:1025 -u -p -i "$file") || {
social_media_card=$(social-cards-zola -o static/img/social_cards -b http://127.0.0.1:1111 -u -p -i "$file") || {
echo "Failed to update social media card for $file"
exit 1
}
@@ -87,6 +87,8 @@ function generate_and_commit_card {
}
}
export -f generate_and_commit_card
function has_minified_version() {
local file="$1"
local extension="${file##*.}"
@@ -200,6 +202,7 @@ modified_md_files=$(git diff --cached --name-only --diff-filter=M | grep -E '\.m
# Loop through each modified .md file.
for file in $modified_md_files; do
echo $file
# If the file is an .md file and it's a draft, abort the commit.
if is_draft "$file"; then
error_exit "Draft file $file is being committed!"