Skip to content

Commit 290f1b0

Browse files
committed
fix: update CI workflow to include Prisma binaries and engines mirrors
1 parent 19c5887 commit 290f1b0

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
NPM_TOKEN: ${{ secrets.GH_TOKEN }}
1313
PRISMA_ENGINES_CHECKSUM_IGNORE_MISSING: 1
1414
PRISMA_SKIP_POSTINSTALL_GENERATE: true
15+
PRISMA_BINARIES_MIRROR: https://prisma-builds.s3-eu-west-1.amazonaws.com
16+
PRISMA_ENGINES_MIRROR: https://prisma-builds.s3-eu-west-1.amazonaws.com
1517
strategy:
1618
matrix:
1719
node-version: [20.x]
@@ -36,9 +38,8 @@ jobs:
3638
run: npm ci
3739

3840
- name: Generate Prisma Client
39-
run: |
40-
npx prisma generate --skip-engines || echo "Skipping engine download"
41-
npx prisma generate
41+
run: npx prisma generate
42+
continue-on-error: false
4243

4344
- name: Lint
4445
run: npm run lint

0 commit comments

Comments
 (0)