From 30c61567a6df11856fcec927f81aed9064d10c5e Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Wed, 8 Nov 2023 11:06:16 +0000 Subject: [PATCH] ci: update build_and_deploy to view smoke test logs --- .github/workflows/build_and_deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index 165136a0d6..d265e5acbd 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -94,13 +94,13 @@ jobs: # Migrate db first, so api works docker compose up migrations --exit-code-from migrations - # Run without migrations (give exit code 0), or api + # Run without migrations (avoid exit code 0) docker compose up --detach \ --no-deps --wait --wait-timeout 60 \ - central-db central central-proxy s3 + central-db central central-proxy s3 api - # Start api attached to view logs - docker compose up --no-deps api + # View logs afterwards + docker compose logs api smoke-test-frontend: runs-on: ubuntu-latest