diff --git a/.gitea/workflows/test-backend.yml b/.gitea/workflows/test-backend.yml index ac7e3d5..30bad56 100644 --- a/.gitea/workflows/test-backend.yml +++ b/.gitea/workflows/test-backend.yml @@ -52,7 +52,8 @@ jobs: - name: Resolve the db port # Docker assigns it (docker/compose.ci.yml), so concurrent runs get one # each. An env var outranks the .env file in the backend settings. - run: echo "POSTGRES_PORT=$(docker compose port db 5432 | tail -n1 | cut -d: -f2)" >> "$GITHUB_ENV" + run: | + echo "POSTGRES_PORT=$(docker compose port db 5432 | tail -n1 | cut -d: -f2)" >> "$GITHUB_ENV" - run: uv sync - name: Migrate DB and seed the superuser run: uv run bash scripts/prestart.sh