From a0ea6a06fe149a8ae226a6aa21406f1db20eabcc Mon Sep 17 00:00:00 2001 From: Alan Bridgeman Date: Fri, 19 Dec 2025 12:30:50 -0600 Subject: [PATCH] Forgot a ) in bash for automation --- .forgejo/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 14c85d1..f8a4321 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -40,7 +40,7 @@ jobs: SEARCH_JSON=$(helm search repo BridgemanAccessible/$CHART_NAME --output json) # 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 # The chart is already in the repository, so we need to check if the version is the same or not