File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,12 @@ jobs:
35
35
uses : actions/setup-node@v4
36
36
with :
37
37
node-version : 20.x
38
- cache : " pnpm"
38
+ # Removed cache: "pnpm" so it won't expect pnpm to be pre-installed
39
39
40
- - name : " 🔧 Setup pnpm"
41
- uses : pnpm/action-setup@v4
42
- with :
43
- version : 10
40
+ - name : " 🔧 Install pnpm"
41
+ run : |
42
+ npm install -g pnpm
43
+ pnpm -- version # for debugging
44
44
45
45
- name : " 🧩 Install dependencies (ci)"
46
46
run : pnpm install --frozen-lockfile
@@ -142,12 +142,12 @@ jobs:
142
142
uses : actions/setup-node@v4
143
143
with :
144
144
node-version : 20.x
145
- cache : " pnpm "
145
+ # Removed cache setting here as well
146
146
147
- - name : " 🔧 Setup pnpm"
148
- uses : pnpm/action-setup@v4
149
- with :
150
- version : 10
147
+ - name : " 🔧 Install pnpm"
148
+ run : |
149
+ npm install -g pnpm
150
+ pnpm --version
151
151
152
152
- name : " 📦 Install Dependencies"
153
153
run : pnpm install --frozen-lockfile
@@ -242,7 +242,6 @@ jobs:
242
242
id : download
243
243
run : |
244
244
echo "🔽 Retrieving APK URL..."
245
- # Use the build:view command to get a clean JSON response
246
245
APK_URL=$(eas build:view --json ${{ needs.build-android.outputs.build_id }} | jq -r '.artifacts.buildUrl')
247
246
if [[ -z "$APK_URL" || "$APK_URL" == "null" ]]; then
248
247
echo "❌ Error: No APK URL found!"
You can’t perform that action at this time.
0 commit comments