From f545216dc348c56240fa95c43c16ce839954bd2f Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Wed, 13 Nov 2024 09:31:37 +0500 Subject: [PATCH] ci: fix artifacts location --- .github/workflows/android.e2e.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.e2e.yml b/.github/workflows/android.e2e.yml index 130b86acc..19c1d340d 100644 --- a/.github/workflows/android.e2e.yml +++ b/.github/workflows/android.e2e.yml @@ -108,12 +108,13 @@ jobs: disable-animations: true emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none force-avd-creation: false - script: yarn test:android --headless --record-logs failing --record-videos failing --take-screenshots failing + script: | + yarn test:android --headless --record-logs failing --record-videos failing --take-screenshots failing --artifacts-location apps/mobile/native/artifacts - name: Upload artifacts if: failure() uses: actions/upload-artifact@v4 with: name: detox-artifacts - path: artifacts + path: apps/mobile/native/artifacts retention-days: 14