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
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:
@@ -5,13 +5,13 @@ on:
|
||||
branches:
|
||||
- main
|
||||
tags:
|
||||
- 'v*'
|
||||
- "v*"
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
skip_checks:
|
||||
description: 'Skip tests? (true/false)'
|
||||
description: "Skip tests? (true/false)"
|
||||
required: false
|
||||
default: 'false'
|
||||
default: "false"
|
||||
|
||||
concurrency:
|
||||
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_HOST='$TRAEFIK_HOST'
|
||||
GATEKEEPER_HOST='$GATEKEEPER_HOST'
|
||||
EOF
|
||||
EOF
|
||||
|
||||
# AUTH_MIDDLEWARE logic
|
||||
printf "AUTH_MIDDLEWARE=%s\n" "$( [[ "$TARGET" == "production" ]] && echo "compress" || echo "${PROJECT_NAME}-auth,compress" )" >> .env.deploy
|
||||
|
||||
Reference in New Issue
Block a user