Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
fi

ACTIVE_ASG="weplate-$ACTIVE_ASG_COLOR-asg"
DELETE_ASG="${DELETE_ASG_COLOR:+weplate-$DELETE_ASG_COLOR-asg}"
DELETE_ASG="weplate-$DELETE_ASG_COLOR-asg"

# Apply scaling
aws autoscaling update-auto-scaling-group \
Expand Down Expand Up @@ -225,7 +225,8 @@ jobs:

echo "✅ ALB listener forwarding complete"

if [ "$DELETE_ASG" != "" ]; then
echo "ℹ️ Delete Start '$DELETE_ASG_COLOR'"
if [ "$DELETE_ASG_COLOR" != "" ]; then
echo "📦 Shutting down previous ASG: $DELETE_ASG"
aws autoscaling update-auto-scaling-group \
--auto-scaling-group-name "$DELETE_ASG" \
Expand Down
4 changes: 2 additions & 2 deletions apps/client-weplate/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,14 @@ function HomePage() {
href="https://achieved-arthropod-648.notion.site/17e39793c46d80f7bb90ed4d3b42e606?pvs=4"
target="_blank"
>
(개인정보처리방침)
개인정보처리방침
</Link>
<span className={cn("px-2")}>|</span>
<Link
href="https://achieved-arthropod-648.notion.site/17939793c46d80ae9015e981635f9b8d?pvs=4"
target="_blank"
>
(서비스 이용약관)
서비스 이용약관
</Link>
</div>
</div>
Expand Down
Loading