Skip to content

Commit

Permalink
Merge pull request #1 from 630yjl/main
Browse files Browse the repository at this point in the history
Test: 깃허브 액션 배포 테스트
  • Loading branch information
630yjl authored Dec 15, 2024
2 parents f14933d + d4916b6 commit a710cfd
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/out/

# production
/build
# /build

# misc
.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion app/(routes)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export default function Home() {
return (
<div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
코촉촉 메인페이지
코촉촉 메인페이지(수정13)
</div>
);
}
18 changes: 18 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/sh

# output 디렉토리 생성 (기존 디렉토리가 존재하면 삭제)
rm -rf output
mkdir output

# 현재 디렉토리의 내용을 output으로 복사
echo "Copying files from current directory to output directory..."
cp -R ./* ./output

# 결과 확인
echo "Output directory contents:"
ls -la ./output

echo "Build script completed successfully."



0 comments on commit a710cfd

Please sign in to comment.