Skip to content

Commit eb17f72

Browse files
fix: Correct Expo preview workflow
The EAS Preview workflow was failing because it was pointing to the old `frontend` directory instead of the new `mobile` directory. This commit updates the `working-directory` in the `.github/workflows/preview.yml` file to `mobile/` to resolve the issue.
1 parent d164ed5 commit eb17f72

File tree

4 files changed

+1106
-1120
lines changed

4 files changed

+1106
-1120
lines changed

.github/workflows/preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929

3030
- name: Install dependencies
3131
run: npm install
32-
working-directory: ./frontend
32+
working-directory: mobile/
3333

3434
- name: Create preview
3535
uses: expo/expo-github-action/preview@v8
3636
with:
3737
command: eas update --auto --branch ${{ github.event.pull_request.head.ref }}
38-
working-directory: ./frontend
38+
working-directory: mobile/

mobile/app.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
"foregroundImage": "./assets/adaptive-icon.png",
2525
"backgroundColor": "#ffffff"
2626
},
27-
"edgeToEdgeEnabled": true,
2827
"permissions": ["READ_MEDIA_IMAGES"]
2928
},
3029
"web": {

0 commit comments

Comments
 (0)