From 7a6121a3231e96b604de890292a8f81db804a081 Mon Sep 17 00:00:00 2001 From: Vlado Djerek Date: Sat, 14 Sep 2024 23:44:19 +0200 Subject: [PATCH] fix docker compose command (#32459) * fix docker compose command * typo fix for runner label --- .github/workflows/tour_of_beam_backend_integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tour_of_beam_backend_integration.yml b/.github/workflows/tour_of_beam_backend_integration.yml index 0ba2711d0d8d..11cd2e2c878b 100644 --- a/.github/workflows/tour_of_beam_backend_integration.yml +++ b/.github/workflows/tour_of_beam_backend_integration.yml @@ -69,7 +69,7 @@ env: jobs: integration: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 defaults: run: working-directory: ./learning/tour-of-beam/backend @@ -88,7 +88,7 @@ jobs: # 1. Start emulators - name: Start emulators - run: docker-compose up -d + run: docker compose up -d # 2. start function-framework processes in BG - name: Compile CF @@ -118,7 +118,7 @@ jobs: - name: Stop emulators if: always() - run: docker-compose down + run: docker compose down # 5. Compare storage/datastore/index.yml VS generated - name: Check index.yaml