From 22785a307c3330e37e5fc9057cda549e050f7d0b Mon Sep 17 00:00:00 2001 From: Steven Masley Date: Thu, 11 Apr 2024 11:57:40 -0500 Subject: [PATCH] chore: add -agpl to agpl e2e artifacts (#12943) * chore: -agpl added to agpl e2e artifacts Before was doing 'false' at the end of artifacts --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1fa2936b3b..8aaaa74398 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -486,7 +486,7 @@ jobs: if: always() && github.actor != 'dependabot[bot]' && runner.os == 'Linux' && !github.event.pull_request.head.repo.fork uses: actions/upload-artifact@v4 with: - name: failed-test-videos${{ matrix.variant.enterprise && '-enterprise' }} + name: failed-test-videos${{ matrix.variant.enterprise && '-enterprise' || '-agpl' }} path: ./site/test-results/**/*.webm retention-days: 7 @@ -494,7 +494,7 @@ jobs: if: always() && github.actor != 'dependabot[bot]' && runner.os == 'Linux' && !github.event.pull_request.head.repo.fork uses: actions/upload-artifact@v4 with: - name: debug-pprof-dumps${{ matrix.variant.enterprise && '-enterprise' }} + name: debug-pprof-dumps${{ matrix.variant.enterprise && '-enterprise' || '-agpl' }} path: ./site/test-results/**/debug-pprof-*.txt retention-days: 7