From af6f32f23f127109b2e47e6a6f225dd310bf4ec0 Mon Sep 17 00:00:00 2001
From: Fred Shema <shemafred3@gmail.com>
Date: Fri, 1 Nov 2024 12:11:15 +0200
Subject: [PATCH] fix: project slug issue

---
 .github/workflows/publish.yml | 20 +++++++++++---------
 app.json                      |  2 +-
 2 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index f76552c..9dbfda4 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -25,7 +25,16 @@ jobs:
           token: ${{ secrets.EXPO_TOKEN }}
 
       - name: 📦 Install dependencies
-        run: npm install
+        run: |
+          npm install
+          npx expo install --fix
+
+      # This step will be deprecated and removed in the future once the google play account is created.
+      - name: 🚀 Build Android App
+        run: eas build --platform android --profile $PROFILE --non-interactive
+        env:
+          PROFILE: ${{ vars.BUILD_PROFILE }}
+          EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }}
 
       - name: 🚀 Build & Submit ios App
         run: |
@@ -36,11 +45,4 @@ jobs:
           rm .easignore
         env:
           PROFILE: ${{ vars.BUILD_PROFILE }}
-          EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }}
-
-      # This step will be deprecated and removed in the future once the google play account is created.
-      - name: 🚀 Build Android App
-        run: eas build --platform android --profile $PROFILE --non-interactive
-        env:
-          PROFILE: ${{ vars.BUILD_PROFILE }}
-          EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }}
+          EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }}
\ No newline at end of file
diff --git a/app.json b/app.json
index 951846f..9e46e53 100644
--- a/app.json
+++ b/app.json
@@ -1,7 +1,7 @@
 {
   "expo": {
     "name": "PULSE",
-    "slug": "atlp-pulse",
+    "slug": "devpulse",
     "version": "1.0.0",
     "orientation": "portrait",
     "icon": "./assets/images/icon.png",