From 41bea05a74e47f57252bca1c1fec57bf02482a1b Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Mon, 5 Feb 2024 13:14:46 -0500 Subject: [PATCH] Managed by Terraform: Update notify-integration-release-via-tag github workflow --- .github/workflows/notify-integration-release-via-tag.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/notify-integration-release-via-tag.yaml b/.github/workflows/notify-integration-release-via-tag.yaml index 1f0e1219..5a66dd2f 100644 --- a/.github/workflows/notify-integration-release-via-tag.yaml +++ b/.github/workflows/notify-integration-release-via-tag.yaml @@ -30,11 +30,14 @@ jobs: run: make generate - shell: bash run: | - if [[ -z "$(git status -s)" ]]; then + uncommitted="$(git status -s)" + if [[ -z "$uncommitted" ]]; then echo "OK" else echo "Docs have been updated, but the compiled docs have not been committed." echo "Run 'make generate', and commit the result to resolve this error." + echo "Generated but uncommitted files:" + echo "$uncommitted" exit 1 fi # Perform the Release