Skip to content

Commit

Permalink
chore: add -agpl to agpl e2e artifacts (#12943)
Browse files Browse the repository at this point in the history
* chore: -agpl added to agpl e2e artifacts

Before was doing 'false' at the end of artifacts
  • Loading branch information
Emyrk committed Apr 11, 2024
1 parent b9936a4 commit 22785a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -486,15 +486,15 @@ 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

- name: Upload pprof dumps
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

Expand Down

0 comments on commit 22785a3

Please sign in to comment.