We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7c24562 + 3403b34 commit ad9f5dfCopy full SHA for ad9f5df
.github/workflows/trigger-tasks-deploy-release.yml
@@ -28,9 +28,16 @@ jobs:
28
working-directory: ./packages/email
29
run: bun install --frozen-lockfile --ignore-scripts
30
31
- - name: Generate Prisma client
+ - name: Build DB package
32
working-directory: ./packages/db
33
- run: bunx prisma generate
+ 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
41
42
- name: 🚀 Deploy Trigger.dev
43
working-directory: ./apps/app
0 commit comments