fix(ci): add missing environment variables for build

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 <noreply@anthropic.com>
This commit is contained in:
Martin Porwoll 2025-12-15 12:33:05 +00:00
parent 1f62563922
commit 00167756f5

View file

@ -159,6 +159,8 @@ jobs:
DATABASE_URI: postgresql://placeholder:placeholder@localhost:5432/placeholder DATABASE_URI: postgresql://placeholder:placeholder@localhost:5432/placeholder
NEXT_PUBLIC_SERVER_URL: https://build.example.com NEXT_PUBLIC_SERVER_URL: https://build.example.com
PAYLOAD_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 - name: Verify build output
run: | run: |
@ -220,6 +222,8 @@ jobs:
NEXT_PUBLIC_SERVER_URL: http://localhost:3001 NEXT_PUBLIC_SERVER_URL: http://localhost:3001
PAYLOAD_PUBLIC_SERVER_URL: http://localhost:3001 PAYLOAD_PUBLIC_SERVER_URL: http://localhost:3001
EMAIL_DELIVERY_DISABLED: 'true' EMAIL_DELIVERY_DISABLED: 'true'
CONSENT_LOGGING_API_KEY: ci-consent-api-key-placeholder
IP_ANONYMIZATION_PEPPER: ci-anonymization-pepper-placeholder
- name: Upload Playwright report - name: Upload Playwright report
if: always() if: always()