Skip to content

Commit af6f32f

Browse files
committed
fix: project slug issue
1 parent c017178 commit af6f32f

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

Diff for: .github/workflows/publish.yml

+11-9
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,16 @@ jobs:
2525
token: ${{ secrets.EXPO_TOKEN }}
2626

2727
- name: 📦 Install dependencies
28-
run: npm install
28+
run: |
29+
npm install
30+
npx expo install --fix
31+
32+
# This step will be deprecated and removed in the future once the google play account is created.
33+
- name: 🚀 Build Android App
34+
run: eas build --platform android --profile $PROFILE --non-interactive
35+
env:
36+
PROFILE: ${{ vars.BUILD_PROFILE }}
37+
EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }}
2938

3039
- name: 🚀 Build & Submit ios App
3140
run: |
@@ -36,11 +45,4 @@ jobs:
3645
rm .easignore
3746
env:
3847
PROFILE: ${{ vars.BUILD_PROFILE }}
39-
EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }}
40-
41-
# This step will be deprecated and removed in the future once the google play account is created.
42-
- name: 🚀 Build Android App
43-
run: eas build --platform android --profile $PROFILE --non-interactive
44-
env:
45-
PROFILE: ${{ vars.BUILD_PROFILE }}
46-
EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }}
48+
EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }}

Diff for: app.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"expo": {
33
"name": "PULSE",
4-
"slug": "atlp-pulse",
4+
"slug": "devpulse",
55
"version": "1.0.0",
66
"orientation": "portrait",
77
"icon": "./assets/images/icon.png",

0 commit comments

Comments
 (0)