Skip to content

Commit

Permalink
Limit concurrency for deployment jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
unstubbable committed Apr 6, 2024
1 parent 73ee87d commit b283ba6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
deploy-cloudflare:
runs-on: ubuntu-latest
environment: Cloudflare Workers
concurrency:
group: deploy-cloudflare
cancel-in-progress: false
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
steps:
Expand All @@ -29,6 +32,9 @@ jobs:
deploy-aws:
runs-on: ubuntu-latest
environment: AWS
concurrency:
group: deploy-aws
cancel-in-progress: false
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down

0 comments on commit b283ba6

Please sign in to comment.