Skip to content

Commit

Permalink
ci: Calculate concurrency group based on platform
Browse files Browse the repository at this point in the history
  • Loading branch information
bbhtt committed Feb 2, 2025
1 parent 3544107 commit b7ad74a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
permissions:
packages: write
concurrency:
group: build_push_docker_backend
group: ${{ matrix.platform }}-build_push_docker_backend
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend_node_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
permissions:
packages: write
concurrency:
group: build_push_docker_backend_node_prod
group: ${{ matrix.platform }}-build_push_docker_backend_node_prod
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
permissions:
packages: write
concurrency:
group: build_push_docker_frontend_prod
group: ${{ matrix.platform }}-build_push_docker_frontend_prod
cancel-in-progress: true
steps:
# 2024-11-16: default-avail: 21G, needs: 20 GB, post-cleanup-avail: 53G
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nginx_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
permissions:
packages: write
concurrency:
group: build_push_docker_nginx
group: ${{ matrix.platform }}-build_push_docker_nginx
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit b7ad74a

Please sign in to comment.