Use environment compose files in deploy workflow
Deploy / deploy-dev (push) Successful in 1m25s
Deploy / deploy-prod (push) Has been skipped

This commit is contained in:
blaisadmin
2026-05-23 18:31:00 -04:00
parent d9822e6626
commit 3ab3f48f19
+2 -2
View File
@@ -21,7 +21,7 @@ jobs:
cd /deploy/FlockPal-dev cd /deploy/FlockPal-dev
git fetch --all --prune git fetch --all --prune
git pull --ff-only git pull --ff-only
docker compose up -d --build docker compose -f docker-compose.yml -f docker-compose.dev.yaml up -d --build
deploy-prod: deploy-prod:
if: ${{ github.event_name == 'workflow_dispatch' }} if: ${{ github.event_name == 'workflow_dispatch' }}
@@ -36,4 +36,4 @@ jobs:
cd /deploy/FlockPal cd /deploy/FlockPal
git fetch --all --prune git fetch --all --prune
git pull --ff-only git pull --ff-only
docker compose up -d --build docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d --build