From ae5b40512c9b89d1adcf3b4b8ae05d93a23abe64 Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Thu, 12 Feb 2026 16:15:14 -0500 Subject: [PATCH] -test environment --- .gitea/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 92f831d..cb414b3 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -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