From ed57ae842bd3d8ba13f90ca77e68200e721cf9d3 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sat, 14 Mar 2026 23:26:46 -0500 Subject: [PATCH] feat: ignore oci repo --- .gitea/workflows/render-manifests.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/render-manifests.yaml b/.gitea/workflows/render-manifests.yaml index d2126c1b3..18e507fa1 100644 --- a/.gitea/workflows/render-manifests.yaml +++ b/.gitea/workflows/render-manifests.yaml @@ -208,7 +208,10 @@ jobs: | tail -n +2 \ | awk 'NF > 0 { print $1, $3 }' \ | while read -r REPO_NAME REPO_URL; do - if [[ -n "${REPO_NAME}" && -n "${REPO_URL}" ]]; then + if [[ "${REPO_URL}" == oci://* ]]; then + echo ">> Ignoring OCI repo: ${REPO_URL}" + + elif [[ -n "${REPO_NAME}" && -n "${REPO_URL}" ]]; then helm repo add "${REPO_NAME}" "${REPO_URL}" fi