From f94be91e42c773aa7e9cfc572885327e438c839c Mon Sep 17 00:00:00 2001 From: Boof2015 <75185879+Boof2015@users.noreply.github.com> Date: Wed, 15 Jul 2026 19:01:40 -0400 Subject: [PATCH] fix aab builder running out of storage --- .github/workflows/android-candidate.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/android-candidate.yml b/.github/workflows/android-candidate.yml index b92dd9a..d89baeb 100644 --- a/.github/workflows/android-candidate.yml +++ b/.github/workflows/android-candidate.yml @@ -231,6 +231,10 @@ jobs: :kotlin-audio:testDebugUnitTest --no-daemon + - name: Reclaim native test build space + working-directory: android + run: ./gradlew clean --no-daemon + - name: Decode upload keystore env: ASTRA_KEYSTORE_BASE64: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_BASE64 }} @@ -252,7 +256,7 @@ jobs: ASTRA_ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_PASSWORD }} ASTRA_ANDROID_KEY_ALIAS: ${{ secrets.ANDROID_UPLOAD_KEY_ALIAS }} ASTRA_ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEY_PASSWORD }} - run: ./gradlew :app:bundleRelease --no-daemon + run: ./gradlew :app:bundleRelease -PreactNativeArchitectures=armeabi-v7a,arm64-v8a --no-daemon - name: Verify release dependency substitution working-directory: android