From fedcc1ff41b9535f5002d046427dd640b647bde4 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sat, 27 Sep 2025 21:56:37 +0200 Subject: [PATCH] fix(release): fix changelog generation pipe usage --- scripts/release-from-version.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release-from-version.sh b/scripts/release-from-version.sh index 6682569..34aad2a 100755 --- a/scripts/release-from-version.sh +++ b/scripts/release-from-version.sh @@ -65,8 +65,8 @@ echo "📦 Version: $VERSION" # === Step 2: Generate changelog for release === echo "📄 Generating changelog for tag v$VERSION" git-cliff -c "$CLIFF_CONFIG" -t "v$VERSION" --context \ - "${GITHUB_ACTION_PATH}/scripts/augment_context.py" \ - git-cliff -c "$CLIFF_CONFIG" -t "v$VERSION" --from-context - -o "$CHANGELOG_FILE" +| "${GITHUB_ACTION_PATH}/scripts/augment_context.py" \ +| git-cliff -c "$CLIFF_CONFIG" -t "v$VERSION" --from-context - -o "$CHANGELOG_FILE" ESCAPED_VERSION="$(echo "$VERSION" | sed 's/\./\\./g')"