From 7d55f4e29e1e181218dc104e28b14495b2a4a0af Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Mon, 4 Jan 2021 10:56:57 +0000 Subject: [PATCH] [android][ci] Clean all non-native outputs Follow up the previous commit. Signed-off-by: Roman Tsisyk --- .github/workflows/android-beta.yaml | 4 ++-- .github/workflows/android-check.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/android-beta.yaml b/.github/workflows/android-beta.yaml index 3f0be05da4..f1374a3f58 100644 --- a/.github/workflows/android-beta.yaml +++ b/.github/workflows/android-beta.yaml @@ -23,10 +23,10 @@ jobs: ref: beta ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} - - name: Remove old APKs + - name: Remove old outputs shell: bash run: | - find -name '*.apk' -delete + rm -rf android/build/outputs/ - name: Configure shell: bash diff --git a/.github/workflows/android-check.yaml b/.github/workflows/android-check.yaml index fea9f16d41..f15a6b7205 100644 --- a/.github/workflows/android-check.yaml +++ b/.github/workflows/android-check.yaml @@ -15,10 +15,10 @@ jobs: submodules: true clean: false # speed up builds - - name: Remove old bundles + - name: Remove old outputs shell: bash run: | - find -name '*.aab' -delete + rm -rf android/build/outputs/ - name: Configure shell: bash