Skip to content

Commit

Permalink
infra: matrix 설정을 통해 다중 runner 적용 (#694)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimprodp authored Sep 25, 2024
1 parent 92894d4 commit cffdc21
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/backend-prod-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ jobs:
deploy:
name: Deploy via self-hosted runner
needs: build
runs-on: [self-hosted, prod]
strategy:
matrix:
runner: [prod-a, prod-b]
runs-on: [self-hosted, "${{ matrix.runner }}"]

steps:
- name: Checkout to secret repository
Expand Down

0 comments on commit cffdc21

Please sign in to comment.