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
2 changes: 1 addition & 1 deletion .github/workflows/campus-table-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:

echo "새로운 컨테이너 $CONTAINER_NAME 실행 중..."
echo $PW | sudo -S docker run -d -p ${PORT}:3000 --name $CONTAINER_NAME \
--restart unless-stopped
--restart unless-stopped \
--env-file .env.production \
${IMAGE}

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ This file is automatically generated and maintained by the centralized workflow

# Chuseok22 Version Changelog

## [0.4.0] - 2026-01-02

✨ **minor**: 학생회관 메뉴 페이지 장바구니 추가 기능 개발
- commit: `5528bb7`

## [0.3.2] - 2025-12-17

🐛 **patch**: 학생회관 메뉴 이미지 API 연결 및 next.js 이미지 최적화
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "campus-table-fe",
"version": "0.3.2",
"version": "0.4.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion src/constants/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const APP_VERSION: string = '0.3.2';
export const APP_VERSION: string = '0.4.0';
1 change: 1 addition & 0 deletions src/shared/components/navigation/BottomNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export default function BottomNavigation() {
key={item.key}
href={item.href}
className={styles.item}
replace
>
<Icon />
<div className={labelClassName}>
Expand Down