-test environment
Some checks failed
Chore App Build and Push Docker Images / build-and-push (push) Failing after 30s

This commit is contained in:
2026-02-12 16:15:14 -05:00
parent 92635a356c
commit ae5b40512c

View File

@@ -91,12 +91,12 @@ jobs:
script: |
cd /tmp
# Pull the repository to get the latest docker-compose.dev.yml
if [ -d "chore-app" ]; then
cd chore-app
if [ -d "chore" ]; then
cd chore
git pull origin next || true # Pull latest changes; ignore if it fails (e.g., first run)
else
git clone --branch next https://git.ryankegel.com:3000/ryan/chore-app.git
cd chore-app
git clone --branch next https://git.ryankegel.com/ryan/chore.git
cd chore
fi
echo "Bringing down previous test environment..."
docker-compose -f docker-compose.dev.yml down --volumes --remove-orphans || true