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