fix: Remove quotes from environment variables in Traefik host rules within docker-compose.yml.
Some checks failed
Build & Deploy KLZ Cables / 🔍 Prepare Environment (push) Successful in 21s
Build & Deploy KLZ Cables / 🧪 Quality Assurance (push) Successful in 1m28s
Build & Deploy KLZ Cables / 🚀 Deploy (push) Has been cancelled
Build & Deploy KLZ Cables / 🔔 Notifications (push) Has been cancelled
Build & Deploy KLZ Cables / 🏗️ Build & Push (push) Has been cancelled

This commit is contained in:
2026-02-01 13:38:35 +01:00
parent 17fe0d7107
commit ea3076b4ec
2 changed files with 18 additions and 9 deletions

View File

@@ -6,6 +6,13 @@ on:
- main
tags:
- 'v*'
workflow_dispatch:
inputs:
skip_long_checks:
description: 'Lange Tests / Scans überspringen? (Hotfix / Eilt!)'
required: false
type: boolean
default: false
concurrency:
group: ${{ github.workflow }}
@@ -49,10 +56,10 @@ jobs:
TARGET="testing"
IMAGE_TAG="main-${SHORT_SHA}"
ENV_FILE=".env.testing"
TRAEFIK_HOST='testing.klz-cables.com'
TRAEFIK_HOST='`testing.klz-cables.com`'
NEXT_PUBLIC_BASE_URL="https://testing.klz-cables.com"
DIRECTUS_URL="https://cms-testing.klz-cables.com"
DIRECTUS_HOST='cms-testing.klz-cables.com'
DIRECTUS_HOST='`cms-testing.klz-cables.com`'
IS_PROD="false"
GOTIFY_TITLE="🧪 Testing-Deploy"
GOTIFY_PRIORITY=4
@@ -61,10 +68,10 @@ jobs:
TARGET="production"
IMAGE_TAG="$TAG"
ENV_FILE=".env.prod"
TRAEFIK_HOST="klz-cables.com', 'www.klz-cables.com"
TRAEFIK_HOST='`klz-cables.com`, `www.klz-cables.com`'
NEXT_PUBLIC_BASE_URL="https://klz-cables.com"
DIRECTUS_URL="https://cms.klz-cables.com"
DIRECTUS_HOST='cms.klz-cables.com'
DIRECTUS_HOST='`cms.klz-cables.com`'
IS_PROD="true"
GOTIFY_TITLE="🚀 Production-Release"
GOTIFY_PRIORITY=6
@@ -72,10 +79,10 @@ jobs:
TARGET="staging"
IMAGE_TAG="$TAG"
ENV_FILE=".env.staging"
TRAEFIK_HOST='staging.klz-cables.com'
TRAEFIK_HOST='`staging.klz-cables.com`'
NEXT_PUBLIC_BASE_URL="https://staging.klz-cables.com"
DIRECTUS_URL="https://cms-staging.klz-cables.com"
DIRECTUS_HOST='cms-staging.klz-cables.com'
DIRECTUS_HOST='`cms-staging.klz-cables.com`'
IS_PROD="false"
GOTIFY_TITLE="🧪 Staging-Deploy (Pre-Release)"
GOTIFY_PRIORITY=5
@@ -131,11 +138,13 @@ jobs:
run: npm ci
- name: 🔍 Lint & Typecheck
if: github.event.inputs.skip_long_checks != 'true'
run: |
npm run lint
npm run typecheck
- name: 🧪 Test
if: github.event.inputs.skip_long_checks != 'true'
run: npm run test
# ──────────────────────────────────────────────────────────────────────────────