From dce7d81ba22c008a2e267cab3c71433b6681c2d1 Mon Sep 17 00:00:00 2001 From: Ryan Hurey Date: Fri, 11 Oct 2024 09:41:55 -0700 Subject: [PATCH] Add logging for failure case --- .github/workflows/ingestion_client.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ingestion_client.yaml b/.github/workflows/ingestion_client.yaml index f7ad8c3c5..229792533 100644 --- a/.github/workflows/ingestion_client.yaml +++ b/.github/workflows/ingestion_client.yaml @@ -37,6 +37,13 @@ jobs: run: | if ! cmp -s ./samples/ingestion/ingestion-client/infra/main.json ./samples/ingestion/ingestion-client/infra/generated_main.json; then echo "Generated ARM template does not match the existing main.json. Please update main.json accordingly." >&2 + echo "====================main.json"====================" + cat main.json + echo "==================================================" + echo + echo "===============generated_main.json"===============" + cat generated_main.json + echo "==================================================" exit 1 fi