From 8765741597f8be52c21a1f1f5a16897fdd330b34 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sun, 12 Apr 2026 20:17:07 -0500 Subject: [PATCH] ci: reconfigure --- .gitea/workflows/lint-test-helm.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/lint-test-helm.yaml b/.gitea/workflows/lint-test-helm.yaml index 55ec2a99c..b2b7dc506 100644 --- a/.gitea/workflows/lint-test-helm.yaml +++ b/.gitea/workflows/lint-test-helm.yaml @@ -528,14 +528,18 @@ jobs: DIFF_FOUND="false" for APP_NAME in ${CHANGED_CHARTS}; do - echo ">> Running argocd app diff for ${APP_NAME} ..." + APP_PATH=${GITHUB_WORKSPACE}/clusters/${CLUSTER}/manifests/${APP_NAME}/ + echo ">> Comparing against manifests in: ${APP_PATH}" + ls -ld "${APP_PATH}" + ls -la "${APP_PATH}" + + echo ">> Running argocd app diff for ${APP_NAME} ..." argocd app diff "${APP_NAME}" \ --server "${ARGOCD_SERVER}" \ --revision ${{ gitea.sha }} \ --diff-exit-code 0 \ - --local "clusters/${CLUSTER}/manifests/${APP_NAME}/" \ - --local-repo-root "${GITHUB_WORKSPACE}" \ + # --local "${APP_PATH}" \ --grpc-web > diff_output_${APP_NAME}.txt if [ -s "diff_output_${APP_NAME}.txt" ]; then