From c78db7987337a685d187a72f01631d5bc1337157 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sat, 23 Aug 2025 19:52:11 +0200 Subject: [PATCH] fix: update changelog generation script syntax Correct the quote style in the changelog generation script for consistency and adherence to shell syntax. The change improves readability and reduces potential parsing issues. --- Release.gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Release.gitlab-ci.yml b/Release.gitlab-ci.yml index a8e0762..8c1d4de 100644 --- a/Release.gitlab-ci.yml +++ b/Release.gitlab-ci.yml @@ -28,7 +28,7 @@ unbound_release_changelog: script: - 'echo "Generating changelog"' - 'git-cliff --bump --unreleased --strip header > CHANGES.md' - - 'git-cliff --bump | sed '\''s/\s\+$//'\'' > CHANGELOG.md' + - "git-cliff --bump | sed 's/\s\+$//' > CHANGELOG.md" - 'echo "Bumping version"' - 'git-cliff --bumped-version 2>/dev/null > VERSION' artifacts: