From 99b1e2edd65ef673db6655dc1c8f28c64292bf43 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 22 Mar 2024 21:14:10 +0100 Subject: [PATCH] nit --- .github/actions/upload-blob-report/action.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/actions/upload-blob-report/action.yml b/.github/actions/upload-blob-report/action.yml index 7b5b6154f8..72a084142a 100644 --- a/.github/actions/upload-blob-report/action.yml +++ b/.github/actions/upload-blob-report/action.yml @@ -14,10 +14,7 @@ runs: steps: - name: Integrity check shell: bash - run: | - for file in ${{ inputs.report_dir }}/*.zip; do - unzip -t $file - done + run: find "${{ inputs.report_dir }}" -name "*.zip" -exec unzip -t {} \; - name: Upload blob report to GitHub if: ${{ !cancelled() && github.event_name == 'pull_request' }} uses: actions/upload-artifact@v4