Skip to content

Commit 4cab446

Browse files
committed
Fix: 백엔드 CD 파일 수정
- 자동화 시, 잘못된 도메인으로 호스트 ID 검증하는 오류 해결
1 parent 583789e commit 4cab446

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/backend-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141
runs-on: ubuntu-latest
4242
env:
4343
DOCKER_IMAGE_NAME: catfe-backend
44-
DOT_ENV: ${{ secrets.DOT_ENV }}
44+
DOT_ENV: ${{ secrets.DOT_ENV_PROD }}
4545
OWNER: ${{ github.repository_owner }}
4646
steps:
4747
- uses: actions/checkout@v4
4848
- name: .env 생성
49-
run: echo "$DOT_ENV" > .env
49+
run: echo "$DOT_ENV_PROD" > .env
5050

5151
- name: Docker Buildx 설치
5252
uses: docker/setup-buildx-action@v2

0 commit comments

Comments
 (0)