-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from 630yjl/main
Test: 깃허브 액션 배포 테스트
- Loading branch information
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
/out/ | ||
|
||
# production | ||
/build | ||
# /build | ||
|
||
# misc | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
|
||
|
||
|