Skip to content

Commit e6ccc21

Browse files
sungbin1015claude
andcommitted
feat(blog): 테스트 이미지 추가 및 sync 스크립트 작성
- static/img/test-banner.svg: SVG 테스트 배너 이미지 - 첫날.mdx, 테스트-두번쨰.mdx: 이미지 삽입 - scripts/sync.sh: blog/ 변경분 커밋·푸시 → GitHub Actions 배포 트리거 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3e6bdeb commit e6ccc21

4 files changed

Lines changed: 39 additions & 0 deletions

File tree

blog/2026-05-14-첫날.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ date: 2026-05-14
77
description: SceneMakerAI 이니셔티브의 목표, 기술 스택, 4대 AI 서비스 계획을 소개합니다.
88
---
99

10+
![SceneMakerAI 배너](/img/test-banner.svg)
11+
1012
SceneMakerAI는 오픈소스 멀티모달 LLM을 활용하여 방송 콘텐츠(드라마, 예능, 보도, 다큐멘터리 등)를 재가공하는 오픈소스 AI 연구·엔지니어링 이니셔티브입니다.
1113

1214
본 프로젝트는 2026년 오픈소스 AI·SW 개발·활용 지원사업(과학기술정보통신부, NIPA)의 일환으로 진행됩니다.

blog/2026-05-15-테스트-두번쨰.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ date: 2026-05-15
77
description: 두 번째 블로그 포스트 테스트입니다.
88
---
99

10+
![SceneMakerAI 배너](/img/test-banner.svg)
11+
1012
두 번째 테스트 포스트입니다.
1113

1214
{/* truncate */}

scripts/sync.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env bash
2+
# blog/ 변경분을 커밋·푸시해 GitHub Actions 배포를 트리거한다.
3+
# 사용: ./scripts/sync.sh [커밋 메시지 (선택)]
4+
set -euo pipefail
5+
6+
REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
7+
cd "$REPO_ROOT"
8+
9+
DATE="$(date +%Y-%m-%d)"
10+
MSG="${1:-"chore(blog): 동기화 ${DATE}"}"
11+
12+
git add blog/ static/img/
13+
14+
if git diff --cached --quiet; then
15+
echo "변경 사항 없음 — 푸시 생략"
16+
exit 0
17+
fi
18+
19+
git commit -m "$MSG"
20+
git push origin main
21+
22+
echo "배포 트리거 완료 → https://doc.scenemaker.solbox.com/blog/"

static/img/test-banner.svg

Lines changed: 13 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)