From 67df0afaffa67ded8e7d63ebc9f82d32c53f0153 Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Tue, 4 Apr 2023 10:48:36 +0200 Subject: [PATCH] Only upload logs and data on failure Signed-off-by: Louis Chemineau --- .github/workflows/cypress.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index d5e3e8ce698..66f3b4383fc 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -92,23 +92,23 @@ jobs: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} - name: Extract NC logs - if: ( success() || failure() ) && matrix.containers != 'component' + if: failure() && matrix.containers != 'component' run: docker logs nextcloud-cypress-tests-server > nextcloud.log - name: Upload NC logs uses: actions/upload-artifact@v3 - if: ( success() || failure() ) && matrix.containers != 'component' + if: failure() && matrix.containers != 'component' with: name: nc_logs_${{ matrix.containers }} path: nextcloud.log - name: Create data dir archive - if: ( success() || failure() ) && matrix.containers != 'component' + if: failure() && matrix.containers != 'component' run: docker exec nextcloud-cypress-tests-server tar -cvjf - data > data.tar - name: Upload data dir archive uses: actions/upload-artifact@v3 - if: ( success() || failure() ) && matrix.containers != 'component' + if: failure() && matrix.containers != 'component' with: name: nc_data_${{ matrix.containers }} path: data.tar -- 2.39.5