From 1df7137d2d6809852fc31f6fd72e0ba900fdee8e Mon Sep 17 00:00:00 2001 From: Raphael Titsworth-Morin Date: Wed, 6 Nov 2024 10:51:03 -0800 Subject: [PATCH] add POSTGRES_PARAMS to env --- .../.github/workflows/deploy.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/samples/django-channels-redis-postgres/.github/workflows/deploy.yaml b/samples/django-channels-redis-postgres/.github/workflows/deploy.yaml index 1c9d5eb3..f27e407e 100644 --- a/samples/django-channels-redis-postgres/.github/workflows/deploy.yaml +++ b/samples/django-channels-redis-postgres/.github/workflows/deploy.yaml @@ -19,7 +19,8 @@ jobs: - name: Deploy uses: DefangLabs/defang-github-action@v1.0.4 with: - config-env-vars: SECRET_KEY POSTGRES_PASSWORD + config-env-vars: SECRET_KEY POSTGRES_PASSWORD POSTGRES_PARAMS env: SECRET_KEY: ${{ secrets.SECRET_KEY }} - POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} \ No newline at end of file + POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} + POSTGRES_PARAMS: ${{ secrets.POSTGRES_PARAMS }} \ No newline at end of file