Skip to content

Commit a28afc7

Browse files
committed
fix missing API sdk on worflows
1 parent 1fc3fc4 commit a28afc7

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

β€Ž.github/workflows/code-quality.ymlβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,8 @@ jobs:
5959
- name: Install deps
6060
run: pnpm install
6161

62+
- name: Generate API SDK
63+
run: pnpm gen:api
64+
6265
- name: Run Typescript checker
6366
run: pnpm run lint:ts

β€Ž.github/workflows/eas-build.ymlβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,8 @@ jobs:
2929
- name: πŸ“¦ Install dependencies
3030
run: pnpm install
3131

32+
- name: Generate API SDK
33+
run: pnpm gen:api
34+
3235
- name: πŸš€ Build app
3336
run: eas build --non-interactive

β€Ž.github/workflows/eas-development-build.ymlβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,8 @@ jobs:
3131
- name: πŸ“¦ Install dependencies
3232
run: pnpm install
3333

34+
- name: Generate API SDK
35+
run: pnpm gen:api
36+
3437
- name: πŸš€ Build app
3538
run: eas build --non-interactive --profile development --platform all

β€Ž.github/workflows/eas-preview.ymlβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
- name: πŸ“¦ Install dependencies
3333
run: pnpm install
3434

35+
- name: Generate API SDK
36+
run: pnpm gen:api
37+
3538
- name: πŸš€ Create preview
3639
uses: expo/expo-github-action/preview@v8
3740
with:

β€Ž.github/workflows/eas-update.ymlβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,8 @@ jobs:
2929
- name: πŸ“¦ Install dependencies
3030
run: pnpm install
3131

32+
- name: Generate API SDK
33+
run: pnpm gen:api
34+
3235
- name: πŸš€ Create update
3336
run: eas update --auto --non-interactive

0 commit comments

Comments
Β (0)