From 335d5275cc8dfb39e6b6f413aa3be52e8212eceb Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Thu, 27 Jul 2023 13:14:33 -0700 Subject: [PATCH] chore: fix the zip paths in artifact upload --- .github/workflows/tests_service.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests_service.yml b/.github/workflows/tests_service.yml index efc812d067..8950f04252 100644 --- a/.github/workflows/tests_service.yml +++ b/.github/workflows/tests_service.yml @@ -27,14 +27,14 @@ jobs: env: PWTEST_MODE: service2 PWTEST_BLOB_SUFFIX: "-${{ matrix.service-os }}-service" - PWTEST_TRACE: 1 PLAYWRIGHT_SERVICE_ACCESS_KEY: ${{ secrets.PLAYWRIGHT_SERVICE_ACCESS_KEY }} PLAYWRIGHT_SERVICE_URL: ${{ secrets.PLAYWRIGHT_SERVICE_URL }} PLAYWRIGHT_SERVICE_OS: ${{ matrix.service-os }} PLAYWRIGHT_SERVICE_RUN_ID: ${{ github.run_id }}-${{ github.run_attempt }}-${{ github.sha }} - name: Zip blob report if: always() - run: zip -r test-results/blob-report-${{ matrix.browser }}-${{ matrix.service-os }}.zip test-results/blob-report + run: zip -r ../blob-report-${{ matrix.browser }}-${{ matrix.service-os }}.zip . + working-directory: test-results/blob-report - name: Upload blob report to GitHub if: always() uses: actions/upload-artifact@v3