Skip to content

Commit d5f5bde

Browse files
committed
not super happy with this but ok
1 parent 8f00b1f commit d5f5bde

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
run: npm run build:icons
3838

3939
- name: 🛠 Setup Database
40-
run: npx prisma migrate deploy && npx prisma generate
40+
run:
41+
npx prisma migrate deploy && npx prisma generate && npx prisma
42+
generate --sql
4143

4244
- name: 🔬 Lint
4345
run: npm run lint
@@ -64,7 +66,9 @@ jobs:
6466
run: npm run build:icons
6567

6668
- name: 🛠 Setup Database
67-
run: npx prisma migrate deploy && npx prisma generate
69+
run:
70+
npx prisma migrate deploy && npx prisma generate && npx prisma
71+
generate --sql
6872

6973
- name: 🔎 Type check
7074
run: npm run typecheck --if-present
@@ -91,7 +95,9 @@ jobs:
9195
run: npm run build:icons
9296

9397
- name: 🛠 Setup Database
94-
run: npx prisma migrate deploy && npx prisma generate
98+
run:
99+
npx prisma migrate deploy && npx prisma generate && npx prisma
100+
generate --sql
95101

96102
- name: ⚡ Run vitest
97103
run: npm run test -- --coverage
@@ -119,7 +125,9 @@ jobs:
119125
run: npm run test:e2e:install
120126

121127
- name: 🛠 Setup Database
122-
run: npx prisma migrate deploy && npx prisma generate
128+
run:
129+
npx prisma migrate deploy && npx prisma generate && npx prisma
130+
generate --sql
123131

124132
- name: 🏦 Cache Database
125133
id: db-cache

0 commit comments

Comments
 (0)