Skip to content

Commit

Permalink
Make deploys queue instead of running in parallel (#373)
Browse files Browse the repository at this point in the history
Add concurrency settings to deploy Actions
  • Loading branch information
mveytsman authored May 27, 2024
1 parent 299e1c4 commit 31195c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}

jobs:
deploy:
name: Deploy
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy.staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
push:
branches:
- staging

concurrency:
group: ${{ github.workflow }}

jobs:
deploy:
name: Deploy
Expand Down

0 comments on commit 31195c5

Please sign in to comment.