From 4933737d609066300b530505120aa303305e9811 Mon Sep 17 00:00:00 2001 From: Jenkins CI Date: Thu, 23 Nov 2023 13:49:04 +0100 Subject: [PATCH] fix: sed command --- .github/workflows/sonarcloud.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index bccae9e..b0ffba1 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -64,7 +64,7 @@ jobs: - name: fix code coverage paths run: | - sed -i 's/\/root/\/github\/workspace/g' apis/_output/reports/coverage.xml + sed 's/\/root/\/github\/workspace/g' apis/_output/reports/coverage.xml > apis/_output/reports/coverage_fixed.xml ; cat apis/_output/reports/coverage_fixed.xml > apis/_output/reports/coverage.xml; rm apis/_output/reports/coverage_fixed.xml - name: Archive apis artifacts before clean uses: actions/upload-artifact@v3