Skip to content

Commit

Permalink
Fix searching for unreleased chart in repo (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
mircea-cosbuc authored Dec 21, 2023
1 parent 7504afd commit 2b0b265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/releaser/cr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ chart_released() {
local chart_name=$1
local version=$2

helm search repo "mongodb/${chart_name}" --version "${version}" |grep "${chart_name}\s"
helm search repo "mongodb/${chart_name}" --version "${version}" | grep "${chart_name}\s" || echo "Not found"
}

# check if release version and chart version is diffrent
Expand Down

0 comments on commit 2b0b265

Please sign in to comment.