Skip to content

Commit a7169bf

Browse files
committed
I have nothing
1 parent 9c23388 commit a7169bf

File tree

3 files changed

+32
-9
lines changed

3 files changed

+32
-9
lines changed

.github/workflows/ios-deploy.yml

Lines changed: 30 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,34 @@
1-
name: Deploy IOS (Caller)
1+
name: Deploy EAS Build
2+
23
on:
34
push:
4-
branches: [prod]
5+
branches:
6+
- prod
57

68
jobs:
7-
deploy:
8-
uses: GenerateNU/shiperate/.github/workflows/ios-deploy.yml@main
9-
with:
10-
env: "node"
11-
secrets: inherit
9+
build:
10+
name: Install and Build
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout Repo
14+
uses: actions/checkout@v5
15+
16+
- name: Setup Node
17+
uses: actions/setup-node@v5
18+
19+
- name: Setup Bun
20+
uses: oven-sh/setup-bun@v2
21+
22+
- name: Install dependencies
23+
working-directory: frontend
24+
run: bun install
25+
26+
- name: Setup Expo and EAS
27+
uses: expo/expo-github-action@v8
28+
with:
29+
eas-version: latest
30+
token: ${{ secrets.EXPO_TOKEN }}
31+
32+
- name: Build on EAS and Auto-Submit to App Store if successful
33+
working-directory: frontend/apps/mobile
34+
run: eas build --platform ios --non-interactive --no-wait --profile production --auto-submit

frontend/apps/mobile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@
5858
},
5959
"private": true,
6060
"main": "expo-router/entry"
61-
}
61+
}

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
"expo-font": "^14.0.11",
1717
"react-native-maps": "^1.27.1"
1818
}
19-
}
19+
}

0 commit comments

Comments
 (0)