From ac073b521805b72dde3df1d0463f493f383952fb Mon Sep 17 00:00:00 2001 From: sam971114 <56977023+sam971114@users.noreply.github.com> Date: Mon, 17 Feb 2025 01:05:06 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20ci-cd=20=EA=B4=80=EB=A0=A8=20redis=20?= =?UTF-8?q?=EC=A2=85=EC=86=8D=EC=84=B1=20=EC=B6=94=EA=B0=80=20(#104)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: ci-cd 배포 파일 분리 * feat: pr,push시에 영향받는 파일 내용 수정 * feat: ci-cd 변경 감지하는 파일 내용 수정 * feat: ci-cd redis 관련 속성 추가 * feat: ci-cd 파일 분리 * feat: test관련 redis 속성 추가 --- .github/workflows/admin-cd.yml | 6 ++++++ .github/workflows/ticket-cd.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/admin-cd.yml b/.github/workflows/admin-cd.yml index 2156a600..e4cf93d4 100644 --- a/.github/workflows/admin-cd.yml +++ b/.github/workflows/admin-cd.yml @@ -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 diff --git a/.github/workflows/ticket-cd.yml b/.github/workflows/ticket-cd.yml index 3bf5fec3..b743e29f 100644 --- a/.github/workflows/ticket-cd.yml +++ b/.github/workflows/ticket-cd.yml @@ -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