Skip to content

Commit d06ad36

Browse files
committed
FIX: Production workflow env variables
1 parent ffb1fe0 commit d06ad36

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/prod-deploy.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,16 @@ jobs:
2525
run: |
2626
docker run -d --name zendoc.io \
2727
-p 4000:3000 \
28+
-e DB_USER=${{ secrets.DB_USER }} \
29+
-e DB_PASS=${{ secrets.DB_PASS }} \
30+
-e DB_HOST=${{ secrets.DB_HOST }} \
31+
-e DB_PORT=${{ secrets.DB_PORT }} \
32+
-e DB_DB=${{ secrets.DB_DB }} \
33+
-e ENCRYPTION_KEY=${{ secrets.ENCRYPTION_KEY }} \
34+
-e SMTP_HOST=${{ secrets.SMTP_HOST }} \
35+
-e SMTP_PORT=${{ secrets.SMTP_PORT }} \
36+
-e SMTP_PASSWORD=${{ secrets.SMTP_PASSWORD }} \
37+
-e SMTP_USER=${{ secrets.SMTP_USER }} \
38+
-e SMTP_FROM=${{ secrets.SMTP_FROM }} \
2839
--restart unless-stopped \
2940
zendoc.io:latest

0 commit comments

Comments
 (0)