From e16d085a47850ebcd88cf09e955f002f5db803f4 Mon Sep 17 00:00:00 2001 From: Angela P Wen Date: Wed, 3 Aug 2022 11:24:18 +0200 Subject: [PATCH] Remove ls check, log formatting --- .github/workflows/debug-artifacts.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/debug-artifacts.yml b/.github/workflows/debug-artifacts.yml index e69941c47..c352690ab 100644 --- a/.github/workflows/debug-artifacts.yml +++ b/.github/workflows/debug-artifacts.yml @@ -51,8 +51,6 @@ jobs: steps: - name: Download all artifacts uses: actions/download-artifact@v3 - - name: Display structure of downloaded files - run: ls -R - name: Check expected artifacts exist shell: bash run: | @@ -62,9 +60,9 @@ jobs: for os in $OPERATING_SYSTEMS; do for version in $VERSIONS; do cd ./my-debug-artifacts-$os-$version - echo "Checking version $version on $os" + echo "Artifacts from version $version on $os:" for language in $LANGUAGES; do - echo "Checking $language" + echo "- Checking $language" if [[ ! -f "$language.sarif" ]] ; then echo "Missing a SARIF file for $language" exit 1