We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d43897b commit 68b144bCopy full SHA for 68b144b
.github/workflows/eas-android-build.yml
@@ -116,10 +116,13 @@ jobs:
116
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
117
118
# ========================
119
- # Fix missing dependency by ensuring consistent store location
+ # Ensure consistent pnpm store: Force reinstallation of dependencies
120
121
- name: "Set pnpm global store directory"
122
- run: pnpm config set store-dir $HOME/.local/share/pnpm --global
+ run: pnpm config set store-dir "$HOME/.local/share/pnpm/store" --global
123
+
124
+ - name: "Reinstall dependencies with new store"
125
+ run: pnpm install --force
126
127
- name: "Install @expo/config-plugins"
128
run: pnpm add @expo/config-plugins
0 commit comments