From 4c7187de77a5532578320e8dbdb588858089b7cc Mon Sep 17 00:00:00 2001 From: Carsten Lenz Date: Wed, 23 Oct 2024 13:59:20 +0200 Subject: [PATCH] chore: more content to step_summary --- scripts/failure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/failure.sh b/scripts/failure.sh index f2eaf64..1bdd6c7 100755 --- a/scripts/failure.sh +++ b/scripts/failure.sh @@ -5,5 +5,5 @@ echo "This script will fail" images=("alpine" "gibtsnicht:1.23.34") for image in "${images[@]}"; do - error=$(docker pull "$image" 2>&1) || echo -e "Failed to pull $image\n\n$error" >> "$GITHUB_STEP_SUMMARY" + error=$(docker pull "$image" 2>&1) || echo -e "Failed to pull $image\n\n Detailed error message:\n$error" >> "$GITHUB_STEP_SUMMARY" done