Skip to content

Commit f8cdcf3

Browse files
authored
fix(actions): env error during staging to prod
1 parent a3d4111 commit f8cdcf3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/on-release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ jobs:
3232
cache: pnpm
3333
- name: Install dependencies
3434
run: pnpm install
35+
env:
36+
S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }}
37+
S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}
38+
S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }}
39+
S3_BUCKET: ${{ secrets.S3_BUCKET }}
3540
- name: Apply all pending migrations to the database
3641
run: npx prisma migrate deploy
3742
env:

0 commit comments

Comments
 (0)