Skip to content

Commit

Permalink
hotfix: ci-cd 관련 redis 종속성 추가 (#104)
Browse files Browse the repository at this point in the history
* feat: ci-cd 배포 파일 분리

* feat: pr,push시에 영향받는 파일 내용 수정

* feat: ci-cd 변경 감지하는 파일 내용 수정

* feat: ci-cd redis 관련 속성 추가

* feat: ci-cd 파일 분리

* feat: test관련 redis 속성 추가
  • Loading branch information
sam971114 authored Feb 16, 2025
1 parent d4d56b4 commit ac073b5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/admin-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
build-and-push-docker-image:
runs-on: ubuntu-latest

services:
redis:
image: redis
ports:
- 6379:6379

steps:
- uses: actions/checkout@v3

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ticket-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
build-and-push-docker-image:
runs-on: ubuntu-latest

services:
redis:
image: redis
ports:
- 6379:6379

steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit ac073b5

Please sign in to comment.