chore(ci): log commits
Some checks failed
Helm / helm-unittest (push) Successful in 13s
Helm / helm-lint (push) Successful in 15s
Release / publish-chart (push) Failing after 14s

This commit is contained in:
Markus Pesch 2025-06-04 19:18:32 +02:00
parent 7cfe55a106
commit c5783bd053
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}"