Added up-down workflow for easier lifecycle management #12

Merged
kovagoadi merged 5 commits from add-up-down into main 2026-09-16 17:39:16 +02:00
Showing only changes of commit 7581625a6f - Show all commits
+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