chore: fix publish for new chart

This commit is contained in:
WrenIX 2023-07-24 21:54:52 +02:00
parent c18074b916
commit 9760a1c38c
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5

View file

@ -21,7 +21,7 @@ for p in * ; do
# should be increased?
tag="${p}-v${v}"
# check if a old version exists
if [ -n $lastTag ]; then
if [ ! $lastTag == '' ]; then
# check if changes since new version happen
changes=$(git diff "${lastTag}" -- "${p}" | wc -l);