We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee25ae3 commit a796ab9Copy full SHA for a796ab9
1 file changed
.github/workflows/prod-deploy.yml
@@ -170,17 +170,11 @@ jobs:
170
run: |
171
pnpm --prefer-offline install
172
173
- - name: Restore dist
174
- uses: actions/cache@v3
175
- with:
176
- path: |
177
- packages
178
- key: packages-${{ github.run_id }}-${{ github.run_number }}
179
-
180
- name: "Run prisma DB migrations"
181
182
- pnpm --filter=@codeimage/api exec prisma migrate deploy
183
- pnpm --filter=@codeimage/api exec prisma generate
+ cd apps/api
+ pnpm exec prisma migrate deploy
+ pnpm exec prisma generate
184
pnpm --filter=@codeimage/prisma-models build
185
186
- name: Test
0 commit comments