From 5670fa9c1aff74c00ff121140dcaffc3f790f71a Mon Sep 17 00:00:00 2001 From: Chris Berg Date: Tue, 10 Dec 2024 08:56:21 -0800 Subject: [PATCH] fix: changed the name of artifacts to be unique --- .github/workflows/e2e-regression-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-regression-tests.yml b/.github/workflows/e2e-regression-tests.yml index 6e1a08ae5..726915b0b 100644 --- a/.github/workflows/e2e-regression-tests.yml +++ b/.github/workflows/e2e-regression-tests.yml @@ -80,14 +80,14 @@ jobs: - uses: actions/upload-artifact@v4 if: failure() with: - name: ${{matrix.test}} screenshot + name: ${{matrix.test}}-${{matrix.browser}} screenshot path: tests/cypress/screenshots/ if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn` - uses: actions/upload-artifact@v4 if: failure() with: - name: ${{matrix.test}} video + name: ${{matrix.test}}-${{matrix.browser}} video path: tests/cypress/videos/ overwrite: true if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn`