Forgot a ) in bash for automation
All checks were successful
Deploy the Helm Chart / build (push) Successful in 8s

This commit is contained in:
Alan Bridgeman 2025-12-19 12:30:50 -06:00
parent 216e0d0c1e
commit a0ea6a06fe

View file

@ -40,7 +40,7 @@ jobs:
SEARCH_JSON=$(helm search repo BridgemanAccessible/$CHART_NAME --output json) SEARCH_JSON=$(helm search repo BridgemanAccessible/$CHART_NAME --output json)
# Parse the JSON to see if our specific chart name exists in the results # Parse the JSON to see if our specific chart name exists in the results
IS_FOUND=$(echo "$SEARCH_JSON" | jq -r ".[] | select(.name == \"BridgemanAccessible/$CHART_NAME\") | .name" IS_FOUND=$(echo "$SEARCH_JSON" | jq -r ".[] | select(.name == \"BridgemanAccessible/$CHART_NAME\") | .name")
if [ -n "$IS_FOUND" ]; then if [ -n "$IS_FOUND" ]; then
# The chart is already in the repository, so we need to check if the version is the same or not # The chart is already in the repository, so we need to check if the version is the same or not