From c40a1dd4181e8723b513661d733aba2065e2c668 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 21 Jul 2023 11:34:59 -0700 Subject: [PATCH] devops: drop --attachments missing option (#24349) Since all resources are uploaded in the separate workflow anyway there is not much point in passing the options and uploading blob reports as a separate step. --- .github/workflows/create_test_report.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/create_test_report.yml b/.github/workflows/create_test_report.yml index 9972e150d8..e519ac0f7b 100644 --- a/.github/workflows/create_test_report.yml +++ b/.github/workflows/create_test_report.yml @@ -31,7 +31,7 @@ jobs: - name: Merge reports run: | - npx playwright merge-reports --reporter markdown,html --attachments missing blob-report + npx playwright merge-reports --reporter markdown,html blob-report - name: Upload HTML report to Azure run: | @@ -39,11 +39,6 @@ jobs: az storage blob upload-batch -s playwright-report -d "\$web/$REPORT_DIR" --connection-string "${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}" echo "Report url: https://mspwblobreport.z1.web.core.windows.net/$REPORT_DIR/index.html" - - name: Upload blob report to Azure - run: | - REPORT_DIR='run-${{ github.event.workflow_run.id }}-${{ github.event.workflow_run.run_attempt }}-${{ github.sha }}' - az storage blob upload-batch -s blob-report -d "\$web/$REPORT_DIR" --connection-string "${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}" - - name: Read pull request number uses: ./.github/actions/download-artifact with: