Skip to content

Commit

Permalink
chore: fix parallelism of ci jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
geclos committed Sep 21, 2024
1 parent 9700420 commit 565109b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
needs: [lint, test]
uses: ./.github/workflows/deploy-common.yml
concurrency:
group: production
group: production-gateway
cancel-in-progress: false
with:
working-directory: apps/infra
stack-name: gateway-production
Expand All @@ -34,7 +35,8 @@ jobs:
needs: [lint, test]
uses: ./.github/workflows/deploy-common.yml
concurrency:
group: production
group: production-web
cancel-in-progress: false
with:
working-directory: apps/infra
stack-name: web-production
Expand All @@ -48,7 +50,8 @@ jobs:
needs: [lint, test]
uses: ./.github/workflows/deploy-common.yml
concurrency:
group: production
group: production-websockets
cancel-in-progress: false
with:
working-directory: apps/infra
stack-name: websockets-production
Expand All @@ -62,7 +65,8 @@ jobs:
needs: [lint, test]
uses: ./.github/workflows/deploy-common.yml
concurrency:
group: production
group: production-workers
cancel-in-progress: false
with:
working-directory: apps/infra
stack-name: workers-production
Expand Down

0 comments on commit 565109b

Please sign in to comment.