From 6a305a30dc0fa3aa6d2d670687e18edef3e8ff8e Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 21 Jan 2026 22:28:59 +0000 Subject: [PATCH] env variables set --- .github/workflows/stripe-to-invoice.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/stripe-to-invoice.yml b/.github/workflows/stripe-to-invoice.yml index 68ba6ea..1a68d10 100644 --- a/.github/workflows/stripe-to-invoice.yml +++ b/.github/workflows/stripe-to-invoice.yml @@ -166,9 +166,13 @@ jobs: kubectl create secret generic $RUNTIME_SECRET \ --namespace $NAMESPACE \ + --from-literal=POSTGRES_USER="$USER" \ + --from-literal=POSTGRES_PASSWORD="$PASS" \ + --from-literal=POSTGRES_DB="$POSTGRES_DB" \ --from-literal=DATABASE_URL="$DATABASE_URL" \ --dry-run=client -o yaml | kubectl apply -f - + - name: Apply app secrets run: | set -e