From 346d72a7595f92811c3b5b5e97fd1fc190314d14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Thu, 26 Mar 2026 18:24:17 +0100 Subject: [PATCH] Fix SMTP_URL and SMTP_FROM not passed to containers during deploy The CD workflow exported SENTRY_RELEASE but not the SMTP env vars, so docker-compose substituted them as empty strings and emails silently failed. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/cd.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2add802..8386bea 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -113,6 +113,8 @@ jobs: # Pull latest images export SENTRY_RELEASE="${{ github.sha }}" + export SMTP_URL="${{ secrets.SMTP_URL }}" + export SMTP_FROM="${{ secrets.SMTP_FROM }}" docker compose pull # Push database schema (starts postgres, waits for healthy)