Skip to content

Commit

Permalink
fix: CD 파일 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kong-hana01 committed Mar 4, 2024
1 parent 0d258d2 commit 6d1663c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ jobs:
if [ -z $SERVER1_MAJOR_VERSION ] && [ -z $SERVER2_MAJOR_VERSION ]; then
echo "서버가 한 대도 띄워져있지 않습니다. 서버 1에 배포"
BLUE_PORT=$SERVER1_PORT
RETAIN_PORT=$SERVER2_PORT
RETAIN_PORT=$GREEN
RETAIN_VERSION="$SERVER2_MAJOR_VERSION.$SERVER2_MINOR_VERSION"
elif [ -z $SERVER1_MAJOR_VERSION ]; then
if [ $SERVER1_MAJOR_VERSION -eq $NOW_MAJOR_VERSION ] && [ $SERVER2_MINOR_VERSION -eq $NOW_MINOR_VERSION ]; then
echo "서버 2에 한 대만 띄워져있습니다. 기존 서버와의 MAJOR/MINOR 버전이 동일합니다. 서버 2에 블루그린 배포 - 1"
BLUE_PORT=$SERVER2_PORT
RETAIN_PORT=$SERVER1_PORT
RETAIN_PORT=$GREEN
RETAIN_VERSION="$SERVER1_MAJOR_VERSION.$SERVER1_MINOR_VERSION"
else
echo "서버 2에 한 대만 띄워져있습니다. 기존 서버와의 MAJOR or MINOR 버전이 다릅니다. 서버 1에 배포 - 2"
Expand All @@ -120,7 +120,7 @@ jobs:
if [ $SERVER1_MAJOR_VERSION -eq $NOW_MAJOR_VERSION ] && [ $SERVER1_MINOR_VERSION -eq $NOW_MINOR_VERSION ]; then
echo "서버 1에 한 대만 띄워져있습니다. 기존 서버와의 MAJOR/MINOR 버전이 동일합니다. 서버 1에 블루그린 배포 - 1"
BLUE_PORT=$SERVER1_PORT
RETAIN_PORT=$SERVER2_PORT
RETAIN_PORT=$GREEN
RETAIN_VERSION="$SERVER2_MAJOR_VERSION.$SERVER2_MINOR_VERSION"
else
echo "서버 1에 한 대만 띄워져있습니다. 기존 서버와의 MAJOR or MINOR 버전이 다릅니다. 서버 2에 블루그린 배포 - 2"
Expand Down

0 comments on commit 6d1663c

Please sign in to comment.