From eeabfcfff6f14d8a2083198cf480ccd037ba64e2 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Mon, 5 May 2025 22:37:25 +0100 Subject: [PATCH] Simplify benchmark report extraction process by using quiet unzip and removing unnecessary steps --- .github/workflows/docs-and-testcov.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docs-and-testcov.yml b/.github/workflows/docs-and-testcov.yml index 1d0fbde..193ea12 100644 --- a/.github/workflows/docs-and-testcov.yml +++ b/.github/workflows/docs-and-testcov.yml @@ -130,13 +130,8 @@ jobs: exit 1 fi - unzip benchmark-report.zip -d benchmark-report - # there will be a tar file in the benchmark-report directory - # called artifact.tar. unzip it into the benchmark-report - tar -xvf benchmark-report/artifact.tar -C benchmark-report - # remove the artifact.tar file - rm benchmark-report/artifact.tar - # add an index.html that points to benchmark-report/report/index.html + unzip -q benchmark-report.zip -d benchmark-report + echo "" > benchmark-report/index.html - name: Copy files to output directory