Fixed syntax
Add up down workflow / Up/Down (Pre-Prod) (push) Failing after 9s

This commit is contained in:
Kővágó Ádám
2026-09-16 17:34:02 +02:00
parent ba67e508f2
commit 7581625a6f
+1 -1
View File
@@ -43,7 +43,7 @@ jobs:
script: |
set -e
cd ${{ env.REMOTE_PREPROD_PATH }}
if ([ "${{ github.event.inputs.action }}" = "up" ]; then
if [ "${{ github.event.inputs.action }}" = "up" ]; then
docker compose -f docker-compose.yml up -d --build --remove-orphans --wait
elif [ "${{ github.event.inputs.action }}" = "down" ]; then
docker compose -f docker-compose.yml down || true