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.
This commit is contained in:
2025-08-23 19:53:48 +02:00
parent c78db79873
commit 6de35472d2
+1 -1
View File
@@ -28,7 +28,7 @@ unbound_release_changelog:
script: script:
- 'echo "Generating changelog"' - 'echo "Generating changelog"'
- 'git-cliff --bump --unreleased --strip header > CHANGES.md' - '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"' - 'echo "Bumping version"'
- 'git-cliff --bumped-version 2>/dev/null > VERSION' - 'git-cliff --bumped-version 2>/dev/null > VERSION'
artifacts: artifacts: