chore(ci): log commits

This commit is contained in:
Markus Pesch 2025-06-04 19:18:32 +02:00
parent 7cfe55a106
commit 7e509a782b
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982

View File

@ -79,7 +79,9 @@ function map_type_to_kind() {
esac esac
} }
COMMIT_TITLES=$(git log "${OLD_TAG}..${NEW_TAG}" --pretty=format:"%s") git log --pretty=format:"%s" "${OLD_TAG}..${NEW_TAG}"
COMMIT_TITLES="$(git log --pretty=format:"%s" "${OLD_TAG}..${NEW_TAG}")"
echo "INFO: Generate change log entries from ${OLD_TAG} until ${NEW_TAG}" echo "INFO: Generate change log entries from ${OLD_TAG} until ${NEW_TAG}"