From 8bebdefd7137a97dc9c0e5d1acc41e0b278725eb Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 1 Jun 2023 09:38:27 -0700 Subject: [PATCH] fix(devops): connection string var name (#23443) --- .github/workflows/create_test_report.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create_test_report.yml b/.github/workflows/create_test_report.yml index a42333f522..36aa3d191c 100644 --- a/.github/workflows/create_test_report.yml +++ b/.github/workflows/create_test_report.yml @@ -34,7 +34,7 @@ jobs: with: blob_prefix: 'run-${{ github.event.workflow_run.id }}-${{ github.event.workflow_run.run_attempt }}-${{ github.sha }}' output_dir: 'blob-report' - connection_string: '${{ secrets.AZURE_CONNECTION_STRING }}' + connection_string: '${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}' - name: Merge into HTML Report run: | @@ -43,14 +43,14 @@ jobs: - name: Upload HTML 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 playwright-report -d "\$web/$REPORT_DIR" --connection-string "${{ secrets.AZURE_CONNECTION_STRING }}" + 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://pwblobreport01.z1.web.core.windows.net/$REPORT_DIR/index.html" - name: Upload blob report to Azure if: ${{ github.event.workflow_run.event == 'pull_request' }} 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 }}" + az storage blob upload-batch -s blob-report -d "\$web/$REPORT_DIR" --connection-string "${{ secrets.AZURE_CONNECTION_STRING_FOR_BLOB_REPORT }}" - name: Comment on PR uses: actions/github-script@v6