Skip to content

Commit

Permalink
fix docker compose command (#32459)
Browse files Browse the repository at this point in the history
* fix docker compose command

* typo fix for runner label
  • Loading branch information
volatilemolotov committed Sep 14, 2024
1 parent fb5424e commit 7a6121a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tour_of_beam_backend_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7a6121a

Please sign in to comment.