Skip to content
Merged
Prev Previous commit
Next Next commit
Upload data dir archive in cypress tests
Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed Apr 5, 2023
commit f057682da4bdab999c7e16940ec5a35c5d45aaa8
11 changes: 11 additions & 0 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,17 @@ jobs:
name: nc_logs_${{ matrix.containers }}
path: nextcloud.log

- name: Create data dir archive
if: ( success() || 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'
with:
name: nc_data_${{ matrix.containers }}
path: data.tar

summary:
runs-on: ubuntu-latest
needs: [init, cypress]
Expand Down