Skip to content

Commit ad9f5df

Browse files
committed
chore: merge main into release for new releases
2 parents 7c24562 + 3403b34 commit ad9f5df

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/trigger-tasks-deploy-release.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,16 @@ jobs:
2828
working-directory: ./packages/email
2929
run: bun install --frozen-lockfile --ignore-scripts
3030

31-
- name: Generate Prisma client
31+
- name: Build DB package
3232
working-directory: ./packages/db
33-
run: bunx prisma generate
33+
run: bun run build
34+
35+
- name: Copy schema to app and generate client
36+
working-directory: ./apps/app
37+
run: |
38+
mkdir -p prisma
39+
cp ../../packages/db/dist/schema.prisma prisma/schema.prisma
40+
bunx prisma generate
3441
3542
- name: 🚀 Deploy Trigger.dev
3643
working-directory: ./apps/app

0 commit comments

Comments
 (0)