File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,11 +28,11 @@ jobs:
2828 cache : ' pnpm'
2929
3030 - name : Install dependencies
31- run : pnpm install --frozen-lockfile --filter echo-control
31+ run : pnpm install --frozen-lockfile --filter echo-control --ignore-scripts
3232 working-directory : ./packages/app/control
3333
3434 - name : Run Prisma migrate deploy (Staging)
35- run : pnpm run prisma:migrate-deploy
35+ run : pnpm run prisma:generate && pnpm run prisma: migrate-deploy
3636 working-directory : ./packages/app/control
3737 env :
3838 DATABASE_URL : ${{ secrets.STAGING_DB_URL }}
@@ -57,11 +57,11 @@ jobs:
5757 cache : ' pnpm'
5858
5959 - name : Install dependencies
60- run : pnpm install --frozen-lockfile --filter echo-control
60+ run : pnpm install --frozen-lockfile --filter echo-control --ignore-scripts
6161 working-directory : ./packages/app/control
6262
6363 - name : Run Prisma migrate deploy (Production)
64- run : pnpm run prisma:migrate-deploy
64+ run : pnpm run prisma:generate && pnpm run prisma: migrate-deploy
6565 working-directory : ./packages/app/control
6666 env :
6767 DATABASE_URL : ${{ secrets.PRODUCTION_DB_URL }}
You can’t perform that action at this time.
0 commit comments