From a9d891581cf87950cf38a3b0643f8af6a83be231 Mon Sep 17 00:00:00 2001 From: Michel Loiseleur Date: Thu, 13 Nov 2025 09:51:25 +0100 Subject: [PATCH] chore(ci): fix releaser script --- scripts/releaser.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/releaser.sh b/scripts/releaser.sh index 547ece7c98..7ff20f023e 100755 --- a/scripts/releaser.sh +++ b/scripts/releaser.sh @@ -9,7 +9,7 @@ function generate_changelog { echo echo "## :warning: Breaking Changes" echo - cat "${MERGED_PRS}" | grep "\!" + cat "${MERGED_PRS}" | grep "\!" || true # no breaking change, section should be removed. echo echo "## :rocket: Features" @@ -35,7 +35,7 @@ function generate_changelog { echo "## :package: Docker Image" echo echo "\`\`\`sh" - echo "# This pull command only works when it's released + echo "# This pull command only works when it's released" echo "docker pull registry.k8s.io/external-dns/external-dns:${VERSION}" echo "\`\`\`"