Bluesky app fork with some witchin' additions 💫

Android CI - Clear cache on second build (#9223)

* clear cache on second build

* alternative cache cleaning method

authored by samuel.fm and committed by

GitHub ea00663e 12e57378

+8 -3
+8 -3
.github/workflows/build-submit-android.yml
··· 50 50 51 51 - uses: actions/setup-java@v4 52 52 with: 53 - distribution: 'temurin' 54 - java-version: '17' 53 + distribution: "temurin" 54 + java-version: "17" 55 55 56 56 - name: ⚙️ Install dependencies 57 57 run: yarn install ··· 96 96 id: timestamp 97 97 uses: nanzm/get-time-action@master 98 98 with: 99 - format: 'MM-DD-HH-mm-ss' 99 + format: "MM-DD-HH-mm-ss" 100 100 101 101 - name: 🚀 Upload Production Artifact 102 102 id: upload-artifact-production ··· 145 145 env: 146 146 SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }} 147 147 SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK 148 + 149 + - name: 🧹 Clear Metro cache 150 + if: ${{ inputs.profile == 'production' }} 151 + # https://github.com/expo/eas-cli/issues/2959#issuecomment-2749791326 152 + run: rm -rf ${TMPDIR:-/tmp}/metro-cache 148 153 149 154 - name: 🏗️ Build Production APK 150 155 if: ${{ inputs.profile == 'production' }}