From 6de35472d2621ea10eeb8ee9212268364ebd4171 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sat, 23 Aug 2025 19:53:48 +0200 Subject: [PATCH] fix: update changelog generation command for consistency Refactor the changelog generation command in the CI configuration. Use consistent quotation marks in the command to enhance readability and avoid potential issues with shell parsing. --- 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 8c1d4de..9db360c 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: