Update .gitea/workflows/build-android.yaml
Build Custom Bluesky APK / build-android (push) Has been cancelled

This commit is contained in:
2026-09-08 02:09:13 +00:00
parent 7dd40cb846
commit 259f38aae6
+13 -1
View File
@@ -31,8 +31,20 @@ jobs:
- name: Enable Corepack
run: corepack enable
- name: Get pnpm store directory
id: pnpm-cache
run: echo "STORE_PATH=$(pnpm store path)" >> "$GITHUB_OUTPUT"
- name: Cache pnpm store
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: pnpm-store-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: |
pnpm-store-
- name: Install Project Dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --frozen-lockfile --network-concurrency 4 --fetch-timeout 120000
- name: Install EAS CLI
run: |