fix(deploy): fix broken yaml indentation in deploy.yml
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 9s
Build & Deploy / 🧪 QA (push) Successful in 5m5s
Build & Deploy / 🏗️ Build (push) Successful in 6m8s
Build & Deploy / 🚀 Deploy (push) Successful in 18s
Build & Deploy / 🩺 Health Check (push) Successful in 1s
Build & Deploy / 🔔 Notify (push) Successful in 1s

This commit is contained in:
2026-02-11 18:52:42 +01:00
parent 8e99c5abb2
commit 4c24f95624

View File

@@ -5,13 +5,13 @@ on:
branches: branches:
- main - main
tags: tags:
- 'v*' - "v*"
workflow_dispatch: workflow_dispatch:
inputs: inputs:
skip_checks: skip_checks:
description: 'Skip tests? (true/false)' description: "Skip tests? (true/false)"
required: false required: false
default: 'false' default: "false"
concurrency: concurrency:
group: ${{ github.workflow }}-${{ (github.ref_type == 'tag' && !contains(github.ref_name, '-')) && 'prod' || (github.ref_name == 'main' && 'testing' || github.ref_name) }} group: ${{ github.workflow }}-${{ (github.ref_type == 'tag' && !contains(github.ref_name, '-')) && 'prod' || (github.ref_name == 'main' && 'testing' || github.ref_name) }}
@@ -277,7 +277,7 @@ jobs:
TRAEFIK_RULE='$TRAEFIK_RULE' TRAEFIK_RULE='$TRAEFIK_RULE'
TRAEFIK_HOST='$TRAEFIK_HOST' TRAEFIK_HOST='$TRAEFIK_HOST'
GATEKEEPER_HOST='$GATEKEEPER_HOST' GATEKEEPER_HOST='$GATEKEEPER_HOST'
EOF EOF
# AUTH_MIDDLEWARE logic # AUTH_MIDDLEWARE logic
printf "AUTH_MIDDLEWARE=%s\n" "$( [[ "$TARGET" == "production" ]] && echo "compress" || echo "${PROJECT_NAME}-auth,compress" )" >> .env.deploy printf "AUTH_MIDDLEWARE=%s\n" "$( [[ "$TARGET" == "production" ]] && echo "compress" || echo "${PROJECT_NAME}-auth,compress" )" >> .env.deploy