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