From 00167756f5361dd23081eb0fa59b4032eb49d476 Mon Sep 17 00:00:00 2001 From: Martin Porwoll Date: Mon, 15 Dec 2025 12:33:05 +0000 Subject: [PATCH] fix(ci): add missing environment variables for build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The build requires CONSENT_LOGGING_API_KEY and IP_ANONYMIZATION_PEPPER environment variables which were not set in CI workflow. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9255c69..df90828 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,6 +159,8 @@ jobs: DATABASE_URI: postgresql://placeholder:placeholder@localhost:5432/placeholder NEXT_PUBLIC_SERVER_URL: https://build.example.com PAYLOAD_PUBLIC_SERVER_URL: https://build.example.com + CONSENT_LOGGING_API_KEY: ci-consent-api-key-placeholder + IP_ANONYMIZATION_PEPPER: ci-anonymization-pepper-placeholder - name: Verify build output run: | @@ -220,6 +222,8 @@ jobs: NEXT_PUBLIC_SERVER_URL: http://localhost:3001 PAYLOAD_PUBLIC_SERVER_URL: http://localhost:3001 EMAIL_DELIVERY_DISABLED: 'true' + CONSENT_LOGGING_API_KEY: ci-consent-api-key-placeholder + IP_ANONYMIZATION_PEPPER: ci-anonymization-pepper-placeholder - name: Upload Playwright report if: always()