From 3befff90c704dde408b8eb73996a618bc8cc5a96 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sat, 20 Sep 2025 19:54:49 -0400 Subject: [PATCH] feat(release-notifier): add thumbnail-img to blog posts --- .github/workflows/__call-release-notifier.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/__call-release-notifier.yml b/.github/workflows/__call-release-notifier.yml index c4342133..6e6ab17c 100644 --- a/.github/workflows/__call-release-notifier.yml +++ b/.github/workflows/__call-release-notifier.yml @@ -86,6 +86,9 @@ jobs: file_name="_posts/releases/${repo_lower}/${year}-${month_day:0:2}-${month_day:2:2}-v${semver}.md" mkdir -p "$(dirname "${file_name}")" + thumbnail_base_url="https://app.lizardbyte.dev/dashboard/github/openGraphImages" + thumbnail_url="${thumbnail_base_url}/${{ github.event.repository.name }}_624x312.png" + # create jekyll blog post { echo "---" @@ -95,6 +98,7 @@ jobs: echo "gh-repo: ${{ github.repository }}" echo "gh-badge: [follow, fork, star]" echo "tags: [release, ${repo_lower}]" + echo "thumbnail-img: ${thumbnail_url}" echo "comments: true" echo "authors:" echo " - github: LizardByte-bot"